Question 61

Refer to the code below:

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

    Refer to the code below:

    What is result of the code block?
  • Question 63

    Given the JavaScript below:
    01 function filterDOM (searchString) {
    02 const parsedSearchString = searchString && searchString.toLowerCase() ;
    03 document.quesrySelectorAll(' .account' ) . forEach(account => (
    04 const accountName = account.innerHTML.toLOwerCase();
    05 account. Style.display = accountName.includes(parsedSearchString) ? /*Insert code*/;
    06 )};
    07 }
    Which code should replace the placeholder comment on line 05 to hide accounts that do not match the search string?
  • Question 64

    Refer to the code below:
    let sayHello = () => {
    console.log ('Hello, world!');
    };
    Which code executes sayHello once, two minutes from now?
  • Question 65

    Which two console logs outputs NaN ?
    Choose 2 answers