<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>关于hasOwnProperty()方法的应用</title>
</head>
<body>
<script>
var man = {
a:1,
b:2,
c:3
}
Object.prototype.clone = function(){
alert(11)
};
// for (var i in man) {
// console.log(man[i])
// }; //循环出所有属性包括继承来的
for(var i in man){
if (man.hasOwnProperty(i)) {
console.log(man[i])
};
} //循环出本实例的所有属性,不包括继承出来的
</script>
</body>
</html>