Skip to content

Instantly share code, notes, and snippets.

@loicDev1
Last active May 10, 2023 09:59
Show Gist options
  • Save loicDev1/90d931960ef9c48d2d750cc70b02815a to your computer and use it in GitHub Desktop.
Save loicDev1/90d931960ef9c48d2d750cc70b02815a to your computer and use it in GitHub Desktop.
const userName : string = 'devo21'
const toUpperFirstLetter = function([firstLetter , ...rest]) : string{
return firstLetter.toUpperCase() + rest.join()
}
console.log(toUpperFirstLetter(userName))
@loicDev1
Copy link
Author

Il faut effectuer un destructuring au niveau des parametres formels de la fonction

@loicDev1
Copy link
Author

ajouter également un console.log()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment