`String text ${expression}`
" is the same as '
"
'
.slice(start, end not included)
.split(" ")
.trim() //remove whitespace
.trim()
.includes("seq") - true if "seq" in string
.includes("seq")
.search("W3Schools"); - returns index of first character or -1
.search("W3Schools");
.toLowerCase()
.toUpperCase()
.join([seperatar ,])
Last updated 4 years ago