原始型別
物件型別:
如何看型別 : typeof
typeof
console.log(typeof 123); //number
null 是一個物件 ⇒ 指向空值
let a = null console.log(typeof a) //object
數字: 先成除後加減
a = a + 1