我已将我的问题与以下代码一起放在评论中:
var box = {};
box.content = box; // box{ 'content': {} } right?
show('content' in box); // true because content exist inside of the box object
show('content' in box.content); // false because box.content contains an empty object! Right?