Add a js question
@ -205,6 +205,13 @@ foo.push(1);
foo.push(2);
```
*Question: What is the value of `foo.x`?*
```javascript
var foo = {n: 1};
var bar = foo;
foo.x = foo = {n: 2};
#### Fun Questions:
* What's a cool project that you've recently worked on?