Skip to content

Instantly share code, notes, and snippets.

@masautt
Last active September 3, 2019 23:04
Show Gist options
  • Save masautt/963203e3217f1e57d08ec36911a9b2ac to your computer and use it in GitHub Desktop.
Save masautt/963203e3217f1e57d08ec36911a9b2ac to your computer and use it in GitHub Desktop.
How to capitalize first letter of string in JavaScript?
let str = "mylowercasestring";
let cappedStr = str.charAt(0).toUpperCase() + name.slice(1));
console.log(cappedStr); //--> "Mylowercasestring"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment