List of questions
Related questions
Question 91 - Certified JavaScript Developer I discussion
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 ]--
Your answer:
0 comments
Sorted by
Leave a comment first