#1.0 Review
# Certificate
What is the output out of the following code? Explain your answer.
var a={},
b={key:'b'},
c={key:'c'};
a[b]=123;
a[c]=456;
console.log(a[b]);Step 1: https://repl.it/
Step 2: Select Javascript
Step 3: Copy Paste and run test
https://www.freecodecamp.com/