2015-05-04 61 views
-1

代碼1沒有變量的函數調用...所以我的問題在這裏....返回值(13)將放在哪裏?由於不存在任何在代碼爲函數調用變量1.代碼2具有一個變量var thevariableithink其中它是其中的答案13將被放置在自8 + 5 = 13。Javascript。返回值(13)將放入哪裏?

code 1: 
var addFiveplease = function(thenumberithink) { 
return thenumberithink + 5; 
}; 

//doesn't have any variable so there's no place where the 13 will be stored. 
addFiveplease(8) 

         //VS 

code 2: 
var addFiveplease = function(thenumberithink) { 
return thenumberithink + 5; 
}; 

//has variable var thevariableithink where 13 will be stored. 
var thevariableithink = addFiveplease(8) 

回答

0

如果問題是在情況1(addFiveplease(8))返回的值會發生什麼情況?那麼它將不會被存儲在任何地方,並且因爲沒有提及它將用於垃圾回收的值

+0

確實還返回日誌字符串到控制檯?如果是...爲什麼? co'z我看到了這個... http://hastebin.com/omufosesof.coffee –

1

返回值(13)將放在哪裏?因爲在代碼1中函數調用沒有任何變量

code1它不會存儲在任何地方,因爲您不會將返回值分配給任何變量。

+0

做也返回日誌字符串到控制檯?如果是...爲什麼? co'z我看到了這個... http://hastebin.com/omufosesof.coffee –

+0

@ jubilukbabawakis。 _log字符串到console_的意思是什麼?你是否正在談論console.log(addFiveplease(8))'在控制檯中打印'13'? – Zee

+0

不...這個在這裏的另一個代碼http://hastebin.com/omufosesof.coffee ...你能看到它嗎? –