JavaScript-Developer-I Exam Question 21

Given the code below:

Which method can be used to provide a visual representation of the list of users and to allow sorting by the name or email attribute?
  • JavaScript-Developer-I Exam Question 22

    A developer has the function, shown below, that is called when a page loads.

    Where can the developer see the log statement after loading the page in the browser?
  • JavaScript-Developer-I Exam Question 23

    Which statement accurately describes an aspect of promises?
  • JavaScript-Developer-I Exam Question 24

    Which three browser specific APIs are available for developers to persist data between page loads ?
    Choose 3 answers
  • JavaScript-Developer-I Exam Question 25

    Refer to the following code that imports a module named utils:
    import (foo, bar) from '/path/Utils.js';
    foo() ;
    bar() ;
    Which two implementations of Utils.js export foo and bar such that the code above runs without error?
    Choose 2 answers