Simple types / Strings

let multilineString = `
    1. First line
    2. Second \
    line
        3. Third line
    4. Fourth "line"
`

console.log(multilineString)

//prints:
//
//    1. First line
//    2. Second     line
//        3. Third line
//    4. Fourth "line"