So, I tried to initialize a variable using this snippet of code,
var foo = {bar: {baz: 3}, qux: {fooAgain: foo.bar.baz + 5}}
But I get the error TypeError: Cannot read property 'bar' of undefined
How would I access property baz
from qux
?