Question 46

Which option is a core Node,js module?
  • Question 47

    Refer to the code below:

    What is the output of this function when called with an empty array?
  • Question 48

    A developer copied a JavaScript object:

    How does the developer access dan's forstName,lastName? Choose 2 answers
  • Question 49

    Refer to the following code:
    function test (val) {
    If (val === undefined) {
    return 'Undefined values!' ;
    }
    if (val === null) {
    return 'Null value! ';
    }
    return val;
    }
    Let x;
    test(x);
    What is returned by the function call on line 13?
  • Question 50

    A class was written to represent items for purchase in an online store, and a second class representing items that are on sale at a discounted price. The constructor sets the name to the first value passed in. The pseudocode is below:

    There is a new requirement for a developer to implement a description method that will retrun a brief description for item and saleitem.

    What is the out when executing the code above?