Q. What will be the value of x?
Code:let x = '2' * '3';
β
Correct Answer: (B)
6
Explanation: Multiplication forces numeric conversion, so '2' * '3' = 6.
let x = '2' * '3';