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

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

Javascript“聲明但從未使用過(guò)的變量”......即使我正在使用它?

Javascript“聲明但從未使用過(guò)的變量”......即使我正在使用它?

ITMISS 2022-10-13 16:01:10
我肯定錯(cuò)過(guò)了什么。在下面的代碼中,我清楚地聲明loopingAdjustment,然后在它下面我在fromCharCode函數(shù)中調(diào)用它。所以,我正在使用它,對(duì)吧?我應(yīng)該可以調(diào)用它,因?yàn)樗谕粋€(gè)范圍內(nèi),對(duì)吧?為什么 VSCode 說(shuō)它“從未使用過(guò)”,為什么我的終端說(shuō)它“未定義”?謝謝你。const caesar = function(startingString, shiftAmount) {        let itemizedString = startingString.split('');    const mappedLetters = itemizedString.map(stringLetter => {                //turn each letter in array into their respective character code        let thisLetter = stringLetter.charCodeAt(stringLetter);        // checking if character is alphabetic and converting its charcode back to a letter        if (thisLetter < 65 || (thisLetter > 90 && thisLetter < 97) || thisLetter > 122) {            return;        } else {            shiftedLetter = thisLetter + shiftAmount;        }                // making sure the shifted letters loop to beginning, or end, of alphabet        if (thisLetter > 96 && shiftedLetter > 122) {            let loopingAdjustment = shiftedLetter - 26;        } else if (thisLetter > 96 && shiftedLetter < 96) {            let loopingAdjustment = shiftedLetter + 26;        } else if (thisLetter < 91 && shiftedLetter > 90) {            let loopingAdjustment = shiftedLetter - 26;        } else if (thisLetter < 91 && shiftedLetter < 65) {            let loopingAdjustment = shiftedLetter + 26;        } else {            let loopingAdjustment = shiftedLetter;        }        let finalString = String.fromCharCode(loopingAdjustment);        return finalString;    });    console.log(mappedLetters);    return mappedLetters.join('');}module.exports = caesar
查看完整描述

2 回答

?
慕萊塢森

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

這是因?yàn)榉秶l(fā)生的,因?yàn)槟鷥H在 if 語(yǔ)句中聲明和定義了 loopingAdjustment 變量,因此范圍僅限于 if 語(yǔ)句。要解決此問題,您可以在 if 之外聲明 loopingAdjustment 并在 if 語(yǔ)句中分配它。您可以從下面的代碼中獲取參考,您可以修改 acc. 根據(jù)您的需要。


const caesar = function(startingString, shiftAmount) {

    

    let itemizedString = startingString.split('');


    const mappedLetters = itemizedString.map(stringLetter => {

        

        //turn each letter in array into their respective character code

        let thisLetter = stringLetter.charCodeAt(stringLetter);


        // checking if character is alphabetic and converting its charcode back to a letter

        if (thisLetter < 65 || (thisLetter > 90 && thisLetter < 97) || thisLetter > 122) {

            return;

        } else {

            shiftedLetter = thisLetter + shiftAmount;

        }

        

        // making sure the shifted letters loop to beginning, or end, of alphabet

        let loopingAdjustment = 0;

        if (thisLetter > 96 && shiftedLetter > 122) {

            loopingAdjustment = shiftedLetter - 26;

        } else if (thisLetter > 96 && shiftedLetter < 96) {

            loopingAdjustment = shiftedLetter + 26;

        } else if (thisLetter < 91 && shiftedLetter > 90) {

            loopingAdjustment = shiftedLetter - 26;

        } else if (thisLetter < 91 && shiftedLetter < 65) {

           loopingAdjustment = shiftedLetter + 26;

        } else {

           loopingAdjustment = shiftedLetter;

        }


        let finalString = String.fromCharCode(loopingAdjustment);


        return finalString;



    });


    console.log(mappedLetters);


    return mappedLetters.join('');


}


module.exports = caesar


查看完整回答
反對(duì) 回復(fù) 2022-10-13
?
開心每一天1111

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

您在 let 有自己的范圍的條件中聲明 loopingAdjustment 。在條件句之外聲明它,只在條件句中更改它的值一次。



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

添加回答

舉報(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)