Answers for "jquery make first letter capital"

2

first letter capital in jquery

// Define function to capitalize the first letter of a string
function capitalizeFirstLetter(string){
  return string.charAt(0).toUpperCase() + string.slice(1);
}

// Calling function and display the result
var str1 = 'hi there!';
str1 = capitalizeFirstLetter(str1);
document.write(str1); // Print: Hi there!
Posted by: Guest on April-19-2021
0

first letter uppercase in jquery

$('#test').css('text-transform', 'capitalize');
Posted by: Guest on September-26-2021

Code answers related to "jquery make first letter capital"

Code answers related to "Javascript"

Browse Popular Code Answers by Language