Skip to content

Instantly share code, notes, and snippets.

@mgelios
Created July 22, 2015 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgelios/9fe60a93083872edf0f5 to your computer and use it in GitHub Desktop.
Save mgelios/9fe60a93083872edf0f5 to your computer and use it in GitHub Desktop.
var log = false;
var iterate = function (left, right, step)
{
log = (left - right <= 0 && step > 0 || left - right >=0 && step < 0);
(log) && console.log(left);
left += step;
(log) && iterate(left, right, step);
}
var tempValue = iterate(5, -5, -2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment