Skip to content

Instantly share code, notes, and snippets.

@hariadi
Created March 8, 2013 18:11
Show Gist options
  • Save hariadi/5118530 to your computer and use it in GitHub Desktop.
Save hariadi/5118530 to your computer and use it in GitHub Desktop.
Formatting number into a string representation.
Handlebars.registerHelper('toK', function(number) {
number = number+'';
if (number < 1000) {
return number;
} else if (number < 10000) {
return number.charAt(0) + ',' + number.substring(1);
} else {
return (number/1000).toFixed(number % 1000 != 0)+'k';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment