Given the following code:
Let x =('15' + 10)*2;
What is the value of a?
Answer : A
Refer to code below:
Let a ='a';
Let b;
// b = a;
console.log(b);
What is displayed when the code executes?
Answer : C
Considering the implications of 'use strict' on line 04, which three statements describe the execution of the code?
Choose 3 answers
Answer : A, C, E
Refer to the following array:
Let arr = [ 1,2, 3, 4, 5];
Which three options result in x evaluating as [3, 4, 5] ?
Choose 3 answers.
Answer : B, C, D
Given HTML below:
Which statement adds the priority = account CSS class to the universal Containers row ?
Answer : B
Refer to the code below:
Which value can a developer expect when referencing country,capital,cityString?
Answer : D
Refer to the code below:
const addBy = ?
const addByEight =addBy(8);
const sum = addBYEight(50);
Which two functions can replace line 01 and return 58 to sum?
Choose 2 answers
Answer : A, D