How to change a String's Case in JavaScript


Strings can be capitalized using String.toUpperCase
For instance;

const str = 'John swana'

str.toUpperCase()

// 'JOHN SWANA'


String.toLowerCase turns strings to their small letters or 'lowerCase'


const strr = "Lorem ipsum"
strr.toLowerCase()

// lorem ipsum

Numbers are not converted, they remain constant, untouched and unchanged.


'65'.toLowerCase()

// '65'

Comments

Popular posts from this blog

How to make a html5 breakout game in JavaScript

How to tabulate array key values using console.table

How to set content disposition headers for express nodejs apps

Ways of iterating Object properties in JavaScript

How to evaluate a string on a regular expression rule in JavaScript