Skip to content

Instantly share code, notes, and snippets.

@Spirecool
Created February 23, 2022 09:53
Show Gist options
  • Save Spirecool/b50c8105a49efe6471f2272f3b744b6b to your computer and use it in GitHub Desktop.
Save Spirecool/b50c8105a49efe6471f2272f3b744b6b to your computer and use it in GitHub Desktop.
function transformText(word) {
const firstLetter = word.substring(0, 1).toUpperCase() // Récupere la premiere lettre et la transforme en majuscule
const otherLetters = word.substring(1).toLowerCase() // Récupere les autres lettres et les transforme en minuscule
return `${firstLetter}${otherLetters}` // Concatenation des deux variables
}
const newWord = transformText('MAGIQUE');
console.log(newWord);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment