+25 XP
Lesson 8

Strings

Working with text!

Strings = Text!

Strings are text wrapped in quotes.

let name = "Alex";
let greeting = 'Hello!';
let message = `Hi there`;
              
" "

Double quotes

' '

Single quotes

` `

Backticks