Question 6

Refer to the code below:
Let str = 'javascript';
Str[0] = 'J';
Str[4] = 'S';
After changing the string index values, the value of str is 'javascript'. What is the reason
for this value:
  • Question 7

    Refer to code below:
    Let a ='a';
    Let b;
    // b = a;
    console.log(b);
    What is displayed when the code executes?
  • Question 8

    Universal Container(UC) just launched a new landing page, but users complain that the
    website is slow. A developer found some functions that cause this problem. To verify this, the
    developer decides to do everything and log the time each of these three suspicious functions
    consumes.
    console.time('Performance');
    maybeAHeavyFunction();
    thisCouldTakeTooLong();
    orMaybeThisOne();
    console.endTime('Performance');
    Which function can the developer use to obtain the time spent by every one of the three
    functions?
  • Question 9

    A developer is working on an ecommerce website where the delivery date is dynamically
    calculated based on the current day. The code line below is responsible for this calculation.
    Const deliveryDate = new Date ();
    Due to changes in the business requirements, the delivery date must now be today's
    date + 9 days.
    Which code meets this new requirement?
  • Question 10

    Refer to the following code:
    01 function Tiger(){
    02 this.Type = 'Cat';
    03 this.size = 'large';
    04 }
    05
    06 let tony = new Tiger();
    07 tony.roar = () =>{
    08 console.log('They\'re great1');
    09 };
    10
    11 function Lion(){
    12 this.type = 'Cat';
    13 this.size = 'large';
    14 }
    15
    16 let leo = new Lion();
    17 //Insert code here
    18 leo.roar();
    Which two statements could be inserted at line 17 to enable the function call on line 18?
    Choose 2 answers.