Guest User

Untitled

a guest
Jun 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var FORMATTER = {
  2. price : function(value) { return '$' + value.toFixed(2); },
  3. pricePer : function(value) { return (value * 100).toFixed(2) + '%'; },
  4. priceChg : function(value) { return (value >= 0 ? '+' : '-') + '$' + Math.abs(value).toFixed(2); }
  5. };
  6.  
  7. var str = YAHOO.util.Number.format(12345, { thousandsSeparator: ',' } );
Add Comment
Please, Sign In to add comment