List of questions
Related questions
Question 144 - Certified JavaScript Developer I discussion
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);
B.
Let x = ('1' + 2) == ( 6 * 2);
C.
Let x = (1 + 2) == ( '6' / 2);
D.
Let x = (1 + 2 ) == ( 6 / 2);
Your answer:
0 comments
Sorted by
Leave a comment first