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

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

為什么“返回”不返回任何東西(JS)

為什么“返回”不返回任何東西(JS)

倚天杖 2022-10-21 10:50:09
我寫了一個關(guān)于在單詞中查找元音的代碼。感謝console.log,我得到了輸出,它可以工作。但是一旦我嘗試返回,它不會返回任何東西..我不明白為什么?這里的代碼:function vowelCount(str) {  let word = str.split("");  //   console.log(word);  //   console.log(word.length - 1);  let count = 0;  for (let i = 0; i <= word.length - 1; i++) {    if (      str[i] === "a" ||      str[i] === "e" ||      str[i] === "i" ||      str[i] === "o" ||      str[i] === "u" ||      str[i] === "y"    ) {      count = count + 1;    }  }  //   console.log(count);  return count;}vowelCount("hello");vowelCount("thereactor");
查看完整描述

4 回答

?
躍然一笑

TA貢獻(xiàn)1826條經(jīng)驗(yàn) 獲得超6個贊

它正在回歸。您只是沒有使用返回值。這可以通過以下方式確定:

console.log(vowelCount("hello"));


查看完整回答
反對 回復(fù) 2022-10-21
?
慕斯709654

TA貢獻(xiàn)1840條經(jīng)驗(yàn) 獲得超5個贊

確保使用返回的數(shù)據(jù)。

var vowelsInHello = vowelCount("hello");

console.log(vowelsInHello);


查看完整回答
反對 回復(fù) 2022-10-21
?
拉風(fēng)的咖菲貓

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

您的代碼返回一個值。也許你沒有調(diào)用這個函數(shù)。注意:使用字符串調(diào)用函數(shù),例如:console.log("hello world");



查看完整回答
反對 回復(fù) 2022-10-21
?
白衣非少年

TA貢獻(xiàn)1155條經(jīng)驗(yàn) 獲得超0個贊

這是一個更好的方法


function vowelCount(str) {

    let count = 0;

    for (let i = 0; i <= str.length - 1; i++) {

        var char = str.charAt(i).toLowerCase()

        if (

            char === "a" ||

            char === "e" ||

            char === "i" ||

            char === "o" ||

            char === "u" ||

            char === "y"

        ) {

            count++

        }

    }

    return count;

}

console.log(vowelCount('this has some vowels'))


查看完整回答
反對 回復(fù) 2022-10-21
  • 4 回答
  • 0 關(guān)注
  • 157 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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