Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Upper Case Or Lower Case A JavaScript String

javascript
const sentence = "We hold these truths to be self evident"

const upperVersion = sentence.toUpperCase()

console.log(upperVersion)

Outputs :

WE HOLD THESE TRUTHS TO BE SELF EVIDENT

javascript
const sentence = "THIS is An Example"
const lowerVersion = sentence.toLowerCase()

console.log(lowerVersion)

Outputs :

this is an example

via : toUpperCase on MDN

and : toLowerCase on MDN