[JavaScript and Python] - How to Make a String Capitalized | SheCodes

[JavaScript and Python] - How to Make a String Capitalized in JavaScript and Python

Discover quick and easy ways to capitalize strings in JavaScript and Python with helpful examples and code snippets.

πŸ‘©β€πŸ’» Technical question

How to make string capslock

πŸ€– SheCodes Athena says:

Answered in 98.59 seconds

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