-
-
Save crmaxx/499ae4c0327870b28a8110d0007657f3 to your computer and use it in GitHub Desktop.
Ruby .times & .upto & .downto methods in JavaScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Ruby = 5.times { |i| puts i } | |
// JS = (1).times(function(i){console.log(i);}) | |
Number.prototype.times = function(cb) { | |
var i = -1; | |
while (++i < this) { | |
cb(i); | |
} | |
return +this; | |
} | |
// Ruby = 1.upto(5) { |i| puts i } | |
// JS = (1).upto(5, function(i){console.log(i);}) | |
Number.prototype.upto = function(t, cb) { | |
var i = this; | |
if(t < this) return +this; | |
while (i <= t) { | |
cb(i++); | |
} | |
return +this; | |
}; | |
// Ruby = 15.downto(10) { |i| puts i } | |
// JS = (15).downto(10, function(i){console.log(i);}) | |
Number.prototype.downto = function(t, cb) { | |
var i = this; | |
if(t > this) return +this; | |
while (i >= t) { | |
cb(i--); | |
} | |
return +this; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment