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

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

在一個(gè)函數(shù)中使用全局聲明的變量是否會(huì)阻止在另一個(gè)函數(shù)中使用該變量?

在一個(gè)函數(shù)中使用全局聲明的變量是否會(huì)阻止在另一個(gè)函數(shù)中使用該變量?

慕姐4208626 2022-08-04 16:48:47
我試圖理解為什么我的代碼的一個(gè)版本有效,而另一個(gè)版本不起作用。我已經(jīng)全局定義了var數(shù),所以我想如果我運(yùn)行函數(shù)sumArray(),那么它會(huì)傳入元素,但它總是返回0。只有當(dāng)我再次定義它更接近函數(shù)sumArray()時(shí),它才正確計(jì)算。將變量編號(hào)用于 printReverse() 函數(shù)是否會(huì)禁止在 sumArray() 中再次使用它?如果您注釋掉,那么您將在控制臺(tái)中看到它返回0。var numbers = [2, 2, 3];var numbers = [1, 2, 3];var result = 0;function printReverse() {  var reversed = [];  while (numbers.length) {    //push the element that's removed/popped from the array into the reversed variable    reversed.push(numbers.pop());  }  //stop the function   return reversed;}//print the results of the function printReverse()console.log(printReverse());var numbers = [2, 2, 3];function sumArray() {  //pass each element from the array into the function  numbers.forEach(function(value) {    //calculate the sum of var result + the value passed through and store the sum in var result    result += value;  });  //return and print the sum  return result;}//print the results of the function sumArray()console.log(sumArray());
查看完整描述

1 回答

?
回首憶惘然

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

(當(dāng)您注釋掉var numbers = [2,2,3])

該方法修改原始數(shù)組,因此當(dāng)您到達(dá) sumArray 函數(shù)時(shí),您沒(méi)有剩余的元素。pop

相反,您可以使用反向方法

numbers.reverse(); //this can completely replace the printReverse function


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

添加回答

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