吴想军
https://phwuxj.wordpress.com/ Stephen Wu Blog
Friday, March 1, 2013
Currency (Money) in Javascript
var Money = function (amount) {
this.amount = amount;
}
Money.prototype.valueOf = function () {
return Math.round(this.amount * 100) / 100;
}
var m = new Money(50.42355446);
var n = new Money(30.342141);
alert(m.amount + n.amount);
alert(m + n);
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment