среда, 17 сентября 2008 г.

Странный код

Нет, правда, странный.
function Food(type){
  this.type = type;
}

var foo = new Food('orange soda');
var bar = new Food('cheeses');

foo.type; // вернет 'orangeSoda'
bar.type; // вернет 'cheeses'