Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save achrefabdennebi/cacd3fc0e18022f80018281e0da8133c to your computer and use it in GitHub Desktop.

Select an option

Save achrefabdennebi/cacd3fc0e18022f80018281e0da8133c to your computer and use it in GitHub Desktop.
const renamed = ({ ID, ...object }) => ({ id: ID, ...object })
const user = {
ID: 500,
name: "Bob Fossil"
}
renamed(user) //=> { id: 500, name: 'Bob Fossil' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment