3 回答

TA貢獻(xiàn)1883條經(jīng)驗(yàn) 獲得超3個(gè)贊
如果您實(shí)際上只想要露營(yíng)地?cái)?shù)組中的露營(yíng)地?cái)?shù)量,則可以使用:
campgrounds.length
就像你已經(jīng)在 for 循環(huán)中一樣
如果出于某種原因您需要增加 for 循環(huán)中的計(jì)數(shù)(也許這是出于學(xué)習(xí)目的而給您的某種作業(yè),當(dāng)您在 for 循環(huán)初始化程序中使用campgrounds.length 時(shí)仍然看起來有點(diǎn)奇怪),您可以每次迭代時(shí)增加計(jì)數(shù):
function campsiteCount(campgrounds) {
let counter = 0;
for(let i = 0; i < campgrounds.length; i++) {
counter++;
}
return counter;
}
或者,如果您想總結(jié)所有聚會(huì)規(guī)模,我想這可能就是您想要的?你會(huì)這樣做:
function campsiteCount(campgrounds) {
let counter = 0;
for(let i = 0; i < campgrounds.length; i++) {
counter += campgrounds[i].partySize;
}
return counter;
}

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超8個(gè)贊
console.log(campgrounds.length);
數(shù)組有一個(gè).length
屬性可以告訴您數(shù)組中的項(xiàng)目數(shù)(您已經(jīng)在 for 循環(huán)中使用了)。

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超13個(gè)贊
//For future reference, this worked:
function campsiteCount(campgrounds) {
let counter = 0;
for(let i = 0; i < campgrounds.length; i++) {
counter = campgrounds.length;
}
return counter;
}
添加回答
舉報(bào)