Question 16

Which code statement below correctly persists an objects in local Storage ?
  • Question 17

    A developer wants to create an object from a function in the browser using the code
    below:
    Function Monster() { this.name = 'hello' };
    Const z = Monster();
    What happens due to lack of the new keyword on line 02?
  • Question 18

    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
  • Question 19

    Which two console logs output NaN?
    Choose 2 answers | |
  • Question 20

    developer publishes a new version of a package with new features that do not break backward compatibility. The previous version number was 1.1.3.
    Following semantic versioning format, what should the new package version number be?