Note: This site is currently "Under construction". I'm migrating to a new version of my site building software. Lots of things are in a state of disrepair as a result (for example, footnote links aren't working). It's all part of the process of building in public. Most things should still be readable though.

Upper Case Or Lower Case A JavaScript String

Code

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__

Code

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

console.log(lowerVersion)

Outputs:

__this is an example__