javascript - 求解js 的問(wèn)題 為什么結(jié)果是5? 分析一下
問(wèn)題描述
<!doctype html><html lang='zh-CN'><head><meta http-equiv='X-UA-Compatible' content='IE=edge'/><meta name='viewport' content='width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no'><meta charset='UTF-8'/><title>Document</title></head><body><script> var test=(function(a){ this.a=a; return function(b){ return this.a+b; } }(function(a,b){ return a; debugger; }(1,2))); console.log(test(4)) //結(jié)果是輸出5 求解? </script></body></html>
問(wèn)題解答
回答1:記
let functionA = function (a) { this.a = a return function (b) {return this.a + b }}let argA = function (a, b) { return a debugger}(1, 2)// 實(shí)際上 argA 就等于 1,** 這個(gè)地方的 b 沒(méi)有被用到 **
則原式簡(jiǎn)化成:
let test = functionA(argA)
此句執(zhí)行完后 test 實(shí)為
function (b) { return this.a + b}// ** 這是一個(gè)帶一個(gè)參數(shù)的函數(shù),執(zhí)行 test(4) 時(shí) b 就是 4 **
且此時(shí) this.a 等于 1。因此 test(4) 結(jié)果為 5
回答2:很顯然是5啊
var test = function(a){ this.a = a; return function(b){return this.a + b; } }(function(a,b){ return a; }(1,2))
分解
var test = function(a){ this.a = a; return function(b){return this.a + b; } }var getA = function(a,b){ return a; }test(getA(1,2))(4);
這要再看不懂,你就要好好學(xué)習(xí)下基礎(chǔ)了
回答3:首先我們要理解test這個(gè)變量,test其實(shí)就是一個(gè)函數(shù),如下
var test = function(b){ return this.a + b;}
外面那層部分是一個(gè)立即執(zhí)行的函數(shù),首先,
function(a,b){ return a; }(1,2)
這部分的結(jié)果就是 1,也就是說(shuō),代碼可以簡(jiǎn)化為:
var test=(function(a){ this.a=a; return function(b){ return this.a+b; } }(1));
在上面的代碼里面,a=1,因此,在test(4)中,我們得到的是:
var test=(function(a){ // a = 1 this.a=a; return function(b){ // b = 4 return this.a+b; // 得到 1 + 4 } }(1));
相關(guān)文章:
1. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?2. android - Genymotion 模擬器可以做屏幕適配檢測(cè)嗎?3. macos - 無(wú)法source activate python274. java - butterknife怎么綁定多個(gè)view5. java - 同步/異步與阻塞/非阻塞之間的差異具體是什么?6. css3 讓圖片變成灰色(filter),但針對(duì)IE11瀏覽器無(wú)效7. html - vue里面:src在IE(9-11)下不顯示圖片8. html5 - 前端面試碰到了一個(gè)緩存數(shù)據(jù)的問(wèn)題,來(lái)論壇上請(qǐng)教一下9. javascript - 打算寫(xiě)一個(gè)c++的node圖像處理模塊,有沒(méi)有推薦的c++圖片處理庫(kù)?10. html5 - 在HBuilder中打包Android的apk包出錯(cuò),不知道是什么原因。

網(wǎng)公網(wǎng)安備