Скачиваний:
33
Добавлен:
11.03.2015
Размер:
825 б
Скачать

Список квартир function ScreenInf() { a1=this.street+"

\n"; a2=this.floar+"эт."+"/"+this.room+"к."+"/"+this.square+"кв.м"+"

\n"; a3=this.price+" руб."+"

\n"; document.write(a1,a2,a3,"

"); } function Flat(str,fl,rm,sq,pr) { this.street=str; this.floar=fl; this.room=rm; this.square=sq; this.price=pr; this.ScreenInf=ScreenInf; } Продажа квартир f1 = new Flat ("ул.Жукова",2,3,69,950000); f2 = new Flat ("пр.Нефтянников",12,1,33,700000); f3 = new Flat ("ул.Южная",7,4,82,1300000); f1.ScreenInf(); f2.ScreenInf(); f3.ScreenInf();