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

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);

Answer: B

Subscribe
Notify of
guest
1 Comment
Inline Feedbacks
View all comments
Sree Charan Shatdarsanam
Sree Charan Shatdarsanam
1 year ago

There is no change in B and original question., both still return true,

Is B supposed to have three “=” ? i.e.
let x = (‘1’ + 2) === ( 6 * 2); ??