> o = { x: 1} { x: 1 } > "x" in o true > "y" in o false > "toString" in o true > o.hasOwnProperty('x') true > o.hasOwnProperty('toString') false