Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
function take(func, num) {
    var arr = [];
    for (var i = 1; i <= num; i++) {
      arr.push(func());
    }
    return arr;
}
            
function prog(a, b) {
    a = a * b;
    return a;
}
     
func = prog(2, 3);
      
console.log(take(function () { return 1; }, 5));
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers