好吧,我不知道我做错了什么,因为它对我来说是正确的,我在网上的所有研究证明我是正确的。但这里是代码和说明:
function newCar(make, model) {
var car = {
make = "Nissan",
model = "model",
};
}
说明如下:创建一个newCar函数,它接受两个参数:make和model 使用这些参数,创建一个汽车对象,给它制作和模型属性,并从函数
返回它答案 0 :(得分:3)
你可以只返回对象,
function newCar(make, model) {
return {
make: make,
model: model,
};
}
console.log(newCar('BMW', '320ci'));
或使用instancciable函数与new
operator一起使用。
function Car(make, model) {
this.make = make;
this.model = model;
}
console.log(new Car('BMW', '320ci'));
答案 1 :(得分:1)
get()