Skip to content

Instantly share code, notes, and snippets.

@diegogriep
Last active May 30, 2020 19:05
Show Gist options
  • Save diegogriep/fd72e3d0384f8fd3b8cd62e612cc0c48 to your computer and use it in GitHub Desktop.
Save diegogriep/fd72e3d0384f8fd3b8cd62e612cc0c48 to your computer and use it in GitHub Desktop.
interface DriverF1 {
firstName: string;
lastName: string;
}
const newDriverF1 = (obj: DriverF1) => {
return {
...obj,
fullName: `${obj.firstName} ${obj.lastName}`
}
}
let hamilton = newDriverF1({ firstName: 'Lewis', lastName: 'Hamilton' })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment