CRT-600 Exam Question 11

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?
  • CRT-600 Exam Question 12

    Refer to the code below:

    Considering that JavaScript is single-threaded, what is the output of line 08 after the code executes?
  • CRT-600 Exam Question 13

    A developer writers the code below to calculate the factorial of a given number.
    Function factorial(number) {
    Return number + factorial(number -1);
    }
    factorial(3);
    What is the result of executing line 04?
  • CRT-600 Exam Question 14

    A developer creates a simple webpage with an input field. When a user enters text in the input field and clicks the button, the actual value of the field must be displayed in the console.
    Here is the HTML file content:
    <input type =" text" value="Hello" name ="input">
    <button type ="button" >Display </button>
    The developer wrote the javascript code below:
    Const button = document.querySelector('button');
    button.addEvenListener('click', () => (
    Const input = document.querySelector('input');
    console.log(input.getAttribute('value'));
    When the user clicks the button, the output is always "Hello".
    What needs to be done make this code work as expected?
  • CRT-600 Exam Question 15

    Refer to the following code:

    What is the value of output on line 11?