-
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)
- map: create new array with the values of the original array and you can add more
const = create constant
- function : hello(){ //code }
- arrow functions : ()=>{ //code }
const [firsName,lastName] = ["Max","Rodriguez"] const {name,lastName} = { name:"Max", lastName: "Rodriguez" }