Skip to content

Instantly share code, notes, and snippets.

View rohitsaini1196's full-sized avatar
High on life

Rohit Saini rohitsaini1196

High on life
  • SenseHQ
  • Bangalore, India
View GitHub Profile
@rohitsaini1196
rohitsaini1196 / firstLetterUpperCase.js
Last active October 10, 2020 06:56
JavaScript Capitalize first letter of the string. You can use it in react js as well.
function ucFirstJS(string)
{
return string.charAt(0).toUpperCase() + string.slice(1);
}