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 create zip archives in nodejs

How to use fetch api submit an html form

Es6 destructuring operator in JavaScript

How to install git on a raspberry PI