Answers for "hackerearth - frontend intern - preliminary test 2020 questions"

0

hackerearth - frontend intern - preliminary test 2020 questions

function constfuncs() {
       var funcs = [];
       for(var i = 0; i < 10; i++)
           funcs[i] = function() { return i; };
       return funcs;
}
Posted by: Guest on June-04-2021

Browse Popular Code Answers by Language