What is the final value of obj in the following example?
const obj = { foo: 1 } obj.bar = 2
{ foo: 1 }
N/A, the above throws an error
{ foo: 1, bar: 2 }
{ foo: 1, 2: bar }
Correct Answer : C
JSON strings have to be in
Which of the following is not JavaScript Data Types?
Which company developed JavaScript?