Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. const noPassword = ({ password, ...rest }) => rest
  2. const user = {
  3. id: 100,
  4. name: 'Howard Moon',
  5. password: 'Password!'
  6. }
  7.  
  8. noPassword(user) //=> { id: 100, name: 'Howard moon' }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement