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
Working with text!
Strings are text wrapped in quotes.
let name = "Alex"; let greeting = 'Hello!'; let message = `Hi there`;
" "Double quotes
' 'Single quotes
` `Backticks