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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

結(jié)合 some() 和startsWith() javascript

結(jié)合 some() 和startsWith() javascript

皈依舞 2023-07-06 18:20:13
我有一個(gè)帶有字符串的數(shù)組:const fruits = ['Apple', 'Banana', 'Orange']'Applepie'我正在嘗試編寫一個(gè)返回 true 或 false 的函數(shù),具體取決于字符串是否以數(shù)組中的任何字符串開(kāi)頭,例如或?yàn)?true 'Bananabread'。我發(fā)現(xiàn)了startsWith()和some(),并將它們結(jié)合起來(lái)就是我所追求的。我該怎么做?
查看完整描述

2 回答

?
慕姐8265434

TA貢獻(xiàn)1813條經(jīng)驗(yàn) 獲得超2個(gè)贊

您可以調(diào)用some該數(shù)組并返回 的結(jié)果theString.startsWith(theArrayEntryForEachLoopIteration),如下所示:

const?theString?=?"Applepie";
const?result?=?fruits.some(fruit?=>?theString.startsWith(fruit));

result如果true存在匹配(您的回調(diào)返回真值),則為,false如果不存在(您的回調(diào)從未返回真值)。some當(dāng)回調(diào)第一次返回真值時(shí),也會(huì)停止查找,因?yàn)闆](méi)有必要繼續(xù)查找。

實(shí)例:

const fruits = ['Apple', 'Banana', 'Orange'];


// Example where it's there:

const theString = "Applepie";

const result = fruits.some(fruit => theString.startsWith(fruit));

console.log(result);


// Example where it isn't

const theString2 = "Toffeepie";

const result2 = fruits.some(fruit => theString2.startsWith(fruit));

console.log(result2);

查看完整回答
反對(duì) 回復(fù) 2023-07-06
?
繁華開(kāi)滿天機(jī)

TA貢獻(xiàn)1816條經(jīng)驗(yàn) 獲得超4個(gè)贊

  const text = 'Applepie'; //Input Text

  const fruits = ['Apple', 'Banana', 'Orange'];

  console.log(fruits.some(v => text.startsWith(v)));


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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