Last active
May 10, 2023 09:59
-
-
Save loicDev1/90d931960ef9c48d2d750cc70b02815a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const userName : string = 'devo21' | |
const toUpperFirstLetter = function([firstLetter , ...rest]) : string{ | |
return firstLetter.toUpperCase() + rest.join() | |
} | |
console.log(toUpperFirstLetter(userName)) |
ajouter également un console.log()
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Il faut effectuer un destructuring au niveau des parametres formels de la fonction