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

Redirecting a webpage in JavaScript

What is 'this.' keyword in JavaScript

Introduction to webshare API (navigator.share)