javascript question 2 explication needed | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

javascript question 2 explication needed

the code: for( var j=0, i=4, j<5, j++) { ( function (i) { setTimeout( function () { console.log(i); }, 1000) }) (J) } the output is: 01234 can anyone explain how this code function?

8th Jul 2018, 7:44 PM
Mr. Jami
Mr. Jami - avatar
1 Answer
+ 2
The code you written contains many syntax errors. (J) is different from (j). Loop statements/expressions are seperated with semicolons, not commas. I will assume that it is written correctly. (function(i){//do something with i})(j) is a self-invoking function, with i as the parameter name defined along with the function, while j is the argument passed to the function. The loop will output the value of j each iteration.
8th Jul 2018, 11:05 PM
Hoàng Nguyễn Văn
Hoàng Nguyễn Văn - avatar