Created
March 17, 2022 09:12
-
-
Save ImBIOS/4c3769de236d88bdd15d87dd9d161a12 to your computer and use it in GitHub Desktop.
toUpperCase() and toLowerCase tutorial source code
This file contains 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
// Direct use | |
// const someText = "Imam Dev"; | |
// const lowercase = someText.toLowerCase(); | |
// console.log(lowercase); | |
// With Function | |
const changeToLowerCase = (text) => { | |
return text.toLowerCase(); | |
}; | |
const result = changeToLowerCase("ImBIOS"); | |
console.log(result); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment