Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Lesson 09: Strings

Text values. Created with quotes or backticks.

What you'll learn

  • single, double, or backtick quotes — pick one style and stick to it
  • template literals (backticks) support ${expression} interpolation
  • escape special chars with \ (e.g. \n, \t, \")
  • strings are immutable — methods return new strings

Example

See examples/.

Exercise

Build a multi-line address string with template literals.