我有一个 for 循环,我想利用我正在循环的数组中的一个对象。具体来说,我想利用我的对象的“名称”部分来仅 console.log 名称,而不是整个数组。这是代码......我正在用猫鼬做这个,但我认为它与我的问题没有任何关系,我只是想添加它。
const newCustomerNum2 = new customerList({
name: "John",
age: 32
});
customerList.find(function(err, customers) {
if (err) {
console.log(err);
} else {
for (var i = 0; i<customers.length; i++){
console.log(customers.name);
}
}
});
ibeautiful
相关分类