Created
May 28, 2019 18:49
-
-
Save GroomedGorilla/0d66ea58469a34621243ce0d76512ad4 to your computer and use it in GitHub Desktop.
Remove one element from object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let objB = {id : '123', name: 'JZ', craving: 'burgers'}; | |
(({id, ...others }) => ({...others}))(objB); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment