-
Notifications
You must be signed in to change notification settings - Fork 0
A. JavaScript Refresher
Carlos Akión Garro Campos edited this page Aug 7, 2023
·
9 revisions
- String
- Number
- Boolean
- Null & undefined
- Objects

let = create variables (local scoop)
var = create variables (global)
const = create constant
- function : hello(){ //code }
- arrow functions : ()=>{ //code }