We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
创建一个对象 obj,使得 obj.obj.obj.obj.obj === obj,即,不管出现多少次 .obj,都得到 obj
obj
obj.obj.obj.obj.obj === obj
.obj
The text was updated successfully, but these errors were encountered:
// 无论多少个.obj 都还是obj本身 var obj = {} obj.obj = obj
Sorry, something went wrong.
// 换种方式赋值 var obj = {} Object.defineProperty(obj,'obj',{ value:obj, })
No branches or pull requests
创建一个对象
obj
,使得obj.obj.obj.obj.obj === obj
,即,不管出现多少次.obj
,都得到obj
The text was updated successfully, but these errors were encountered: