These store data. There are 3 ways to create variables:
- var
- let (recommended)
- const
var
Allows for the highest versaility
let
const
Constants. you cannot update it
used for values that will never change. You are however able to edit that const’s attributes.