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
Cloning an object that includes field 'toString' will have the following affect: before clone:
[ { a: 'aaa', toString: 'bbb' }, { a: 'ccc', toString: 'ddd' } ]
after clone:
[ { a: 'aaa' }, { a: 'ccc' } ]
'toString' field is removed from cloned object.
The text was updated successfully, but these errors were encountered:
Could use hasOwnProperty to tell if a field from Object is being overwritten on the clonee.
Sorry, something went wrong.
@rictic not sure I’m following you. Is it a workaround?
Bump on this, this issue is hanging me up on the development of my programming language.
No branches or pull requests
Cloning an object that includes field 'toString' will have the following affect:
before clone:
after clone:
'toString' field is removed from cloned object.
The text was updated successfully, but these errors were encountered: