Discover quick and easy ways to capitalize strings in JavaScript and Python with helpful examples and code snippets.
How to make string capslock
You can make a capitalized string in the following ways, depending on the programming language you are using:
JavaScript:
javascript Copy code
let str = 'hello world'
let capitalizedStr = str.slice(0,1).toUpperCase() + str.slice(1)
console.log(capitalizedStr) // Hello World
Source: MDN Web Docs
Python:
python Copy code
string = 'hello world'
capitalizedStr = string.capitalize()
print(capitalizedStr) # Hello world
Source: python.org