javascript:函数方法与对象
Posted qianxinyi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript:函数方法与对象相关的知识,希望对你有一定的参考价值。
1 function getSize(width, height,depth){ 2 var area =width*height; 3 var volume=width*height*depth; 4 var sizes=[area,volume]; 5 Return sizes; 6 } 7 Var areaOne=getSize(3,2,3)[0];//获取面积,sizes数组中第一个值 8 Var volumeOne=getSize(3,2,3)[1];//获取size数组中第二个值
1 Var hotel={ 2 Name:‘limy‘,//属性 3 Rooms:40, 4 Booked:25, 5 Qym:true, 6 roomTypes:[‘twin‘,‘double‘,‘suite‘], 7 checkAvailability:function(){//方法 8 Return this.room-this.booked; 9 } 10 };
3、访问对象
以上是关于javascript:函数方法与对象的主要内容,如果未能解决你的问题,请参考以下文章