Question 101

Which two console logs out NaN?
Choose 2 answers
  • Question 102

    A developer implements and calls the following code when an application state change occurs:
    Const onStateChange =innerPageState) => {
    window.history.pushState(newPageState, ' ', null);
    }
    If the back button is clicked after this method is executed, what can a developer expect?
  • Question 103

    What is the result of the code block?
  • Question 104

    A developer writes the code below to return a message to a user attempting to register a new username. If the username is available, a variable named nag is declared and assigned a value on line 03.

    What is the value of msg when getAvailableabilityMessage ("newUserName") is executed and get Availability ("newUserName") returns true?
  • Question 105

    Refer to code below:
    console.log(0);
    setTimeout(() => (
    console.log(1);
    });
    console.log(2);
    setTimeout(() => {
    console.log(3);
    ), 0);
    console.log(4);
    In which sequence will the numbers be logged?