ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 144 - Certified JavaScript Developer I discussion

Report
Export

Refer to the expression below:

Let x = ('1' + 2) == (6 * 2);

How should this expression be modified to ensure that evaluates to false?

A.
Let x = ('1' + ' 2') == ( 6 * 2);
Answers
A.
Let x = ('1' + ' 2') == ( 6 * 2);
B.
Let x = ('1' + 2) == ( 6 * 2);
Answers
B.
Let x = ('1' + 2) == ( 6 * 2);
C.
Let x = (1 + 2) == ( '6' / 2);
Answers
C.
Let x = (1 + 2) == ( '6' / 2);
D.
Let x = (1 + 2 ) == ( 6 / 2);
Answers
D.
Let x = (1 + 2 ) == ( 6 / 2);
Suggested answer: B
asked 23/09/2024
Ryan Edwards
38 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first