toUpperCase() and toLowerCase()
On Strings
Strings hold data in text form. They have a length property, and you can use + and += to easily concatenate them:
let firstString = 'Hi'
let secondString = 'there!'
firstString.length
//output: 2
secondString.length
//output 6
firstStri...
raissa.hashnode.dev1 min read