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 sequence(startCount, newCount) {
  
  var currentCount = startCount;
  
  return function counter(startCount, newCount) {
    if (newCount !== undefined) {
      console.log(currentCount);
      currentCount = +newCount;
      return currentCount;
    } else {
      return currentCount++;
    }
  };
}
var counter = sequence(1, 3);
console.log(counter());
console.log(counter());
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers