What is the value of copy?
Given the code below:
const copy = JSON.stringify([ new String(‘ false ’), new Bollean( false ), undefined ]);
What is the value of copy?
A . — [ ”false” , { } ]–
B . — [ false, { } ]–
C . — [ ”false” , false, undefined ]–
D . — [ ”false” ,false, null ]–
Answer: D
Latest JavaScript Developer I Dumps Valid Version with 144 Q&As
Latest And Valid Q&A | Instant Download | Once Fail, Full Refund
C is the right answer