对象
对象的定义:组合多个信息,方便用户查找。
<script>
var stu1 = {
name : "张三",
age : "18",
say : function (){
alert("铁蛋和钢蛋是兄弟!");
}
}
//动态添加属性
stu1.score = 90;
//动态添加方法
stu1.eat = function (){
alert("铁蛋比钢蛋能吃!");
}
alert(stu1.name); //调用属性
stu1.say(); // 调用方法
</script>