Skip to content

Instantly share code, notes, and snippets.

@detj
Last active August 29, 2015 14:02
Show Gist options
  • Save detj/93cb5bffe6cbd7ffd152 to your computer and use it in GitHub Desktop.
Save detj/93cb5bffe6cbd7ffd152 to your computer and use it in GitHub Desktop.
--> Arrow operators <--
function foo() {
var s = 4;
var t = 1;
while(s --> t) { console.log(s) }
}
// Output
// 3
// 2
// 1
function bar() {
var s = 4;
var t = 1;
while(t <-- s) { console.log(s) }
}
// Output
// 3
// 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment