Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

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!
Comment

PREVIOUS NEXT
Code Example
Javascript :: axios fainally 
Javascript :: discord.js embed timestamp 
Javascript :: vue 3 route params 
Javascript :: How to check if an item is selected from an HTML drop down list with javascript js 
Javascript :: FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory 
Javascript :: html to react converter 
Javascript :: javascript to number 
Javascript :: convert date dd/mm/yyyy to date object js 
Javascript :: javascript return multiple values from a function 
Javascript :: filter through date in mongooes 
Javascript :: get last letter of string javascript 
Javascript :: how to use filter in typescript 
Javascript :: compare mongoose id 
Javascript :: angular 6 key value pair getvalue example 
Javascript :: javjquery is emptyobject 
Javascript :: react native picker 
Javascript :: nextjs getserversideprops 
Javascript :: convert timestamp to time javascript 
Javascript :: hashset in javascript 
Javascript :: vuejs router params 
Javascript :: navigator.geolocation.getCurrentPosition(console.log,console.log) undefined 
Javascript :: javascript fullscreen 
Javascript :: javascript split remove last element 
Javascript :: Which react-bootstrap component you will use for width: 100% across all viewport and device sizes 
Javascript :: script src= https//kit.fontawesome.com/a81368914c.js /script 
Javascript :: optional chaining in js 
Javascript :: React 18 to 17 
Javascript :: next.js index page 
Javascript :: node ssh 
Javascript :: how to show calendar in javascript 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =