var obj = { key: 'value' }; alert( obj[ 'key' ] ); // true alert( 'key' in obj ); // true alert( obj.key ); // true alert( obj.prop ); // undefined