第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

給定一個露營地數(shù)組、一種字符串形式的視圖類型和一個數(shù)字形式的聚會規(guī)模

給定一個露營地數(shù)組、一種字符串形式的視圖類型和一個數(shù)字形式的聚會規(guī)模

紫衣仙女 2023-07-20 10:09:39
我已經(jīng)迷上 Javascript 幾天了。如果我忘記了什么,我需要你的幫助。提前致謝。這些是說明:編寫一個函數(shù) findMyCampsites。給定一個露營地數(shù)組、一種字符串形式的視圖類型和一個數(shù)字形式的隊伍規(guī)模,返回一個包含匹配露營地的露營地編號的數(shù)組。當(dāng)前可用的露營地(isReserved === false),其視圖與輸入字符串(例如海洋或森林)匹配,可以容納輸入數(shù)量或更大的派對規(guī)模,如果沒有可用的站點,則返回字符串“抱歉,沒有具有該視圖的露營地可用于舉辦您的派對”function findMyCampsites(campgrounds, string, number) {  for(let i = 0; i < campgrounds.length; i++) {    if(    campgrounds[i].isReserved === false &&    campgrounds[i].view === string &&    campgrounds[i].partySize === number    ) {      return campgrounds[i].number;    } else {      return "Sorry, no campsites with that view are available to host your party";    }  }}
查看完整描述

2 回答

?
慕萊塢森

TA貢獻1810條經(jīng)驗 獲得超4個贊

這段代碼將完全按照您的要求進行:


function findMyCampsites(campgrounds, string, number) {

  const campsites = [];

  for(let i = 0; i < campgrounds.length; i++) {

    if(

    campgrounds[i].isReserved === false &&

    campgrounds[i].view === string &&

    campgrounds[i].partySize >= number

    ) {

      campsites.push(campgrounds[i].number);

    }

  }

  if (campsites.length === 0) {

    return "Sorry, no campsites with that view are available to host your party";

  } else {

    return campsites;

  }

}

但是,我想強調(diào)幾件事,首先,您希望使函數(shù)參數(shù)更具描述性。即,不要調(diào)用第二個參數(shù)string,可以將其稱為類似的名稱siteType,而不是第三個參數(shù)number,嘗試類似的名稱requiredSpaces。另外,這個函數(shù)返回一個字符串(如果沒有找到站點)和一個數(shù)組(如果找到站點)有點奇怪。通常,您通常希望該函數(shù)僅返回單一類型,但如果這就是簡報要求您做的,那就這樣吧。在您的編碼職業(yè)生涯中,有幾件事需要您考慮。


查看完整回答
反對 回復(fù) 2023-07-20
?
眼眸繁星

TA貢獻1873條經(jīng)驗 獲得超9個贊

function findMyCampsites(campgrounds, string, number) {

  const campsites = [];

  for(let i = 0; i < campgrounds.length; i++) {

    if(

    campgrounds[i].isReserved === false &&

    campgrounds[i].view === string &&

    campgrounds[i].partySize >= number

    ) {

      campsites.push(campgrounds[i].number);

    }

  }

  return array.length

   ? array

   : "Sorry, no campsites with that view are available to host your 

    party";

}


查看完整回答
反對 回復(fù) 2023-07-20
  • 2 回答
  • 0 關(guān)注
  • 181 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號