Guest User

Untitled

a guest
Oct 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. k1: `111`,
  2. k2: `222`,
  3. k3: `333`
  4. };
  5.  
  6. const renameProp = (oldProp, newProp, {[oldProp]:old, ...others}) => ({
  7. [newProp]: old,
  8. ...others
  9. })
  10.  
  11. console.log(renameProp('k1', 'kx', old_obj))
  12. console.log(old_obj)
Add Comment
Please, Sign In to add comment