Strings (Text)
A lot of this applies to other languages but the syntax may be slightly different.
Strings and Chars
let someString = "Sample string FTW!";
console.log(someString[0]); // Prints 'S'
console.log(someString[5]); // Prints 'e'
console.log(someString.length); // Prints the length - 18Special Characters

Example
Concatenation
Template Literals
Examples
Basic String Work
Built-in Functions
Important Note
Last updated