function rectangle(w,h)
{
this.width=w;
this.height=h;
}
这里是声明一个函数可以返回this属性里的长和高
用new可以创建新的对象而不影响前一个的值
var rect1=new rectangle(2,5);
var rect2=new rectangle(5,7);
这样rect1和rect2的高度宽度就都分别为上述()中的值了
function rectangle(w,h)
{
this.width=w;
this.height=h;
}
这里是声明一个函数可以返回this属性里的长和高
用new可以创建新的对象而不影响前一个的值
var rect1=new rectangle(2,5);
var rect2=new rectangle(5,7);
这样rect1和rect2的高度宽度就都分别为上述()中的值了
转载于:https://my.oschina.net/u/1470765/blog/212880