JavaScript-Developer-I Exam Question 16

Given the following code:
Let x =('15' + 10)*2;
What is the value of a?
  • JavaScript-Developer-I Exam Question 17

    A developer has the following array of student test grades:
    Let arr = [ 7, 8, 5, 8, 9 ];
    The Teacher wants to double each score and then see an array of the students
    who scored more than 15 points.
    How should the developer implement the request?
  • JavaScript-Developer-I Exam Question 18

    A developer initiates a server with the file server,js and adds dependencies in the source codes package,json that are required to run the server.
    Which command should the developer run to start the server locally?
  • JavaScript-Developer-I Exam Question 19

    Refer to the code declarations below:

    Which three expressions return the string JavaScript?
    Choose 3 answers
  • JavaScript-Developer-I Exam Question 20

    Given the JavaScript below:
    01 function filterDOM (searchString) {
    02 const parsedSearchString = searchString && searchString.toLowerCase() ;
    03 document.quesrySelectorAll(' .account' ) . forEach(account => (
    04 const accountName = account.innerHTML.toLOwerCase();
    05 account. Style.display = accountName.includes(parsedSearchString) ? /*Insert
    code*/;
    06 )};
    07 }
    Which code should replace the placeholder comment on line 05 to hide accounts that do
    not match the search string?