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
Assign merges object properties from all supplied objects. If a property already exists, then it is overwritten when merged from left to right.
const someObj = { hold: 44, fast: 14 }; const result = objects.assign(someObj, { hold: 25, your: 19, horses: 4 }); console.log(result); > { hold: 25, fast: 14, your: 19, horses: 4 }
The text was updated successfully, but these errors were encountered:
Added in v0.67
Sorry, something went wrong.
No branches or pull requests
Assign merges object properties from all supplied objects. If a property already exists, then it is overwritten when merged from left to right.
Checklist
Details
References
The text was updated successfully, but these errors were encountered: