This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by wliangchao
about 11 years

Functions and Variables 2, anyone help me? please. thank you very much!!!!

var mutipiled=5 var timesTwo = function(number) { var multiplied = number * 2; };

timesTwo(4);

// We cant access the variable multipled! // Do something so the last line will work! console.log(multiplied);

How can I fix this?prints out the value of the global multiplied, which is unchanged and is 5.

Answer 514081badf647609d900527f

0 votes

Permalink

Oh! my dear, the right answer just is 5.

points
Submitted by Anyin Song
about 11 years