Question 1

Which three browser specific APIs are available for developer to persist data between page loads?
Choose 3 answers
  • Question 2

    Refer to the following code that performs a basic mathematical operation on a provided input:
    function calculate(num) {
    Return (num +10) / 3;
    }
    How should line 02 be written to ensure that x evaluates to 6 in the line below?
    Let x = calculate (8);
  • Question 3

    Refer to the following object.

    How can a developer access the fullName property for dog?
  • Question 4

    Refer to the code below:

    Which code executes syhello once, two minutes from now?
  • Question 5

    Refer to the code below:
    For (let number =2: number <= S; number += 1) ( // insert code statement here The developer needs to insert a code statement in the location shown. The code statement has these requirements:
    1. Does not require an import
    2. Logs an error when the Boolean statement evaluates to false
    3. Works In both the browser and Node.js
    Which statement meet these requirements?