Question 26

What are two unique features of functions defined with a fat arrow as compared to normal function definition?
Choose 2 answers
  • Question 27

    Given code below:
    setTimeout (() => (
    console.log(1);
    ). 0);
    console.log(2);
    New Promise ((resolve, reject )) = > (
    setTimeout(() => (
    reject(console.log(3));
    ). 1000);
    )).catch(() => (
    console.log(4);
    ));
    console.log(5);
    What is logged to the console?
  • Question 28

    Refer to the code below:
    console.log(''start);
    Promise.resolve('Success') .then(function(value){
    console.log('Success');
    });
    console.log('End');
    What is the output after the code executes successfully?
  • Question 29

    A developer has a web server running with Node.js. The command to start the web server is node server.js. The web server started having latency issues. Instead of a one second turnaround for web requests, the developer now sees a five second turnaround.
    Which command can the web developer run to see what the module is doing during the latency period?
  • Question 30

    A developer implements a function that adds a few values.
    Function sum(num) {
    If (num == undefined) {
    Num =0;
    }
    Return function( num2, num3){
    If (num3 === undefined) {
    Num3 =0 ;
    }
    Return num + num2 + num3;
    }
    }
    Which three options can the developer invoke for this function to get a return value of 10 ?
    Choose 3 answers