frontend-challenges icon indicating copy to clipboard operation
frontend-challenges copied to clipboard

99 - Closure 2 - javascript

Open jsartisan opened this issue 1 year ago • 0 comments

index.js

export function createFunctions() {
  const functions = [];
  
  for (let i = 0; i < 10; i++) {
    let func = function () {
      console.log(i);
    };
    
    functions.push(func);
  }

  return functions;
}

jsartisan avatar Jul 01 '24 12:07 jsartisan