basics 1

Here we'll look at some fundamental syntax rules for JavaScript

Variables

Variables are used to store information- each holds a value with a specific name.

Case Sensitivity

Everything in JavaScript is case Sensitive

let password
// is not the same as
let pasSword
let PASSWORD
atras