JavaScript-Developer-I Exam Question 41

Refer to the following code block:
01 let array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11];
02 let output = 0;
03
04 for (let num of array) {
05 if (output > 10) {
06 break;
07 }
08 if (num % 2 == 0) {
09 continue;
10 }
11 output += num;
12 }
What is the value of output after the code executes?
  • JavaScript-Developer-I Exam Question 42

    Refer to the code snippet:
    01 let array = [1, 2, 3, 4, 4, 5, 4, 4];
    02 for (let i = 0; i < array.length; i++) {
    03 if (array[i] === 4) {
    04 array.splice(i, 1);
    05 i--;
    06 }
    07 }
    What is the value of array after the code executes?
  • JavaScript-Developer-I Exam Question 43

    Refer to the code below:
    01 < html lang= " en " >
    02 < table onclick= " console.log( ' Table log ' ); " >
    03 < tr id= " row1 " >
    04 < td > Click me! < /td >
    05 < /tr >
    06 < /table >
    07 < script >
    08 function printMessage(event) {
    09 console.log( ' Row log ' );
    10 event.stopPropagation();
    11 }
    12
    13 let elem = document.getElementById( ' row1 ' );
    14 elem.addEventListener( ' click ' , printMessage, false);
    15 < /script >
    16 < /html >
    Which code change should be done for the console to log the following when " Click me! " is clicked?
    Row log
    Table log
  • JavaScript-Developer-I Exam Question 44

    A developer is leading the creation of a new web server for their team that will fulfill API requests from an existing client. The team wants a web server that runs on Node.js, and they want to use the new web framework Minimalist.js. The lead developer wants to advocate for a more seasoned back-end framework that already has a community around it.
    Which two frameworks could the lead developer advocate for?
  • JavaScript-Developer-I Exam Question 45

    Original constructor function:
    01 function Vehicle(name, price) {
    02 this.name = name;
    03 this.price = price;
    04 }
    05 Vehicle.prototype.priceInfo = function () {
    06 return `Cost of the $(this.name) is $(this.price)$`;
    07 }
    08 var ford = new Vehicle( ' Ford Fiesta ' , ' 20,000 ' );
    Which class definition is correct?