Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 211 Bytes

File metadata and controls

15 lines (10 loc) · 211 Bytes

Money JS

Fowler's Money pattern

tenEuro = new Money(10, new Currency('EUR'));
fiveEuro = new Money(5, new Currency('EUR'));
fifteenEuro = tenEuro.add(fiveEuro);

Installation