Skip to content

Latest commit

 

History

History
17 lines (17 loc) · 474 Bytes

第3章 对象.md

File metadata and controls

17 lines (17 loc) · 474 Bytes

第3章 对象

  1. 对象属性名可以包括空字符串的任意字符串
  var obj={
    undefined:undefined,
    '':1,
    ' ':2,
    's-s':3
    //s-s:2//报错,属性名中不能有连接符(-)
  }
  console.log(obj['undefined'])//undefined
  console.log(obj.undefined)//undefined
  console.log(obj['s-s'])//3
  console.log(obj[' '])//2
  console.log(obj[''])//1
  1. delete运算符可以删除对象属性,但不会触及原型链中的任何对象