物件與純值


Posted by hoyi-23 on 2021-06-21

物件與純值最大的差別就是: 純值不能新增屬性

物件新增屬性

var family = {};
family.name = 'Ray';
console.log(family); //物件
console.log(family['name']); // 'Ray'

純值新增屬性 (錯誤)

var num = 10;
console.log(num); //10
num.name = 'Ray';
console.log(num.name); //undefined

純值不允許新增屬性

JavaScript 只有兩種型別: 物件 與 純值

純值:

  1. String
  2. Boolean
  3. Number
  4. Undefined
  5. Null

#物件 #純值







Related Posts

跳出迴圈的方法 continue, break 與 return

跳出迴圈的方法 continue, break 與 return

七天打造自己的 Google Map 應用入門 - Day06

七天打造自己的 Google Map 應用入門 - Day06

前端串串 API

前端串串 API


Comments