JavaScript-Developer-I Exam Question 21

Given the JavaScript below:

Which code should replace the placeholder comment on line 05 to highlight accounts that match the search string'
  • JavaScript-Developer-I Exam Question 22

    A developer uses a parsed JSON string to work with user information as in the block below:

    Which two option access the email attributes in the object? Choose 2 answers
  • JavaScript-Developer-I Exam Question 23

    Refer to the following code:
    Let obj ={
    Foo: 1,
    Bar: 2
    }
    Let output =[],
    for(let something in obj{
    output.push(something);
    }
    console.log(output);
    What is the output line 11?
  • JavaScript-Developer-I Exam Question 24

    Which statement accurately describes the behaviour of the async/ await keyworks ?
  • JavaScript-Developer-I Exam Question 25

    A developer wants to set up a secure web server with Node.js. The developer creates a directory locally called app-server, and the first file is app-server/index.js Without using any third-party libraries, what should the developer add to index.js to create the secure web server?