Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 230 Bytes

File metadata and controls

7 lines (5 loc) · 230 Bytes

Reviewing JavaScript from O'Reilly's JavaScript Book from 2020

New Things I got to know:

  • Null is a special value that means "no value"
  • "3" + "2" // => "32": + adds numbers, concatenates strings
  • count *= 3 (Multiplies)