JavaScript-Developer-I Exam Question 36

A developer executes:
document.cookie;
document.cookie = ' key=John Smith ' ;
What is the behavior?
  • JavaScript-Developer-I Exam Question 37

    Refer to the code:
    01 const exec = (item, delay) = >
    02 new Promise(resolve = > setTimeout(() = > resolve(item), delay));
    03
    04 async function runParallel() {
    05 const [result1, result2, result3] = await Promise.all(
    06 [exec( ' x ' , ' 100 ' ), exec( ' y ' , ' 500 ' ), exec( ' z ' , ' 100 ' )]
    07 );
    08 return `parallel is done: ${result1}${result2}${result3}`;
    09 }
    Which two statements correctly execute runParallel()?
  • JavaScript-Developer-I Exam Question 38

    Code:
    01 let array = [1, 2, 3, 4, 4, 5, 4, 4];
    02 for (let i = 0; i < array.length; i++) {
    03 if (array[i] === 4) {
    04 array.splice(i, 1);
    05 i--;
    06 }
    07 }
    What is the value of array after execution?
  • JavaScript-Developer-I Exam Question 39

    A Node.js server library uses events and callbacks. The developer wants to log any issues the server has at boot time.
    Which code logs an error with an event?
  • JavaScript-Developer-I Exam Question 40

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