You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var jsobj={
set prop(value){
this._prop=value;
},
get prop(){
return this._prop;
}
};
jsobj.prop={a:'astring',b:1234};
console.log(jsobj.prop);
console.log(jsobj.prop.a);
output:
{
"a": "astring",
"b": 1234 }
Uncaught Error: Cannot read property 'a' of undefined
at line 1 col 79
...rop),console.log(jsobj.prop.a);
^
=undefined
The text was updated successfully, but these errors were encountered:
code:
output:
The text was updated successfully, but these errors were encountered: