Skip to content

Instantly share code, notes, and snippets.

@ImBIOS
Created March 17, 2022 09:12
Show Gist options
  • Save ImBIOS/4c3769de236d88bdd15d87dd9d161a12 to your computer and use it in GitHub Desktop.
Save ImBIOS/4c3769de236d88bdd15d87dd9d161a12 to your computer and use it in GitHub Desktop.
toUpperCase() and toLowerCase tutorial source code
// 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