Skip to content

Instantly share code, notes, and snippets.

@f3r
Created November 2, 2014 23:25
Show Gist options
  • Save f3r/a601a2169579106d7caf to your computer and use it in GitHub Desktop.
Save f3r/a601a2169579106d7caf to your computer and use it in GitHub Desktop.
5-min Quiz - Javascript return
///
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/return
//
// $ brew update && install node
// $ node return.js
//
var print = function(t){ console.log(t) };
var counter = function() {
for (var c=1;; c++) {
print(c);
if (c === 3) { return }
print(c);
}
print(c);
}
counter();
// What's the output of this program?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment