我尝试将名称和颜色发送到下面的构造函数。该方法this.whatAreYou()
应在调用时检索这些字符串。
我想在屏幕上显示这个。
我有以下代码:
function Gadget(name, color) {
this.name = name;
this.color = color;
this.whatAreYou = function() {
return 'I am a ' + this.name+ ' ' + this.color;
};
}
string = Gadget(grass, green);
alert(string);
但是警报不起作用。我怎样才能达到我想要的行为?