JavaScript-Developer-I Exam Question 11

Refer to following code block:
Let array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,];
Let output =0;
For (let num of array){
if (output >0){
Break;
}
if(num % 2 == 0){
Continue;
}
Output +=num;
What is the value of output after the code executes?
  • JavaScript-Developer-I Exam Question 12

    What are two unique features of functions defined with a fat arrow as compared to normal function definition?
    Choose 2 answers
  • JavaScript-Developer-I Exam Question 13

    Refer to the following code block:

    What is the console output?
  • JavaScript-Developer-I Exam Question 14

    A developer creates a class that represents a blog post based on the requirement that a
    Post should have a body author and view count.
    The Code shown Below:
    Class Post {
    // Insert code here
    This.body =body
    This.author = author;
    this.viewCount = viewCount;
    }
    }
    Which statement should be inserted in the placeholder on line 02 to allow for a variable to be set
    to a new instanceof a Post with the three attributes correctly populated?
  • JavaScript-Developer-I Exam Question 15

    Universal Container (UC) notices that its application allows users to search for account makes a network request each time a key is pressed. This results in too many request for the server to handle.
    O address this problem, UC decides to implement a deboune function on the search string change handler. Choose 3 answers