.hasOwnProperty检查是否有某属性

检查一个对象属性是否存在
例子:

  1. var myObj = {
  2. top: "hat",
  3. bottom: "pants"
  4. };
  5. myObj.hasOwnProperty("top"); // true
  6. myObj.hasOwnProperty("middle"); // false