5. String Operators

Used with strings.

let first = "Hello";
let second = "World";

console.log(first + " " + second);
// Hello World