Skip to content

Instantly share code, notes, and snippets.

@noeldelgado
Created March 10, 2013 15:03
Show Gist options
  • Save noeldelgado/5128908 to your computer and use it in GitHub Desktop.
Save noeldelgado/5128908 to your computer and use it in GitHub Desktop.
var values = [];
var pr = function(min, max, factor) {
while(min < max) {
min = Math.round(min / factor);
values.push( min );
}
return values;
};
console.log( pr(4, 100, 0.75) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment