If I type this into console:
var x = {a: 1};
var y = Object.create(x);
console.log(y);
It shows {}. But if I run it in fiddle it shows {a: 1}, which is the expected result. Also here:
var x = {a: 1};
var y = Object.create(x);
console.log(y);
So what is going on?
