Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 274 Bytes

negate.md

File metadata and controls

20 lines (12 loc) · 274 Bytes

negate()

negates the monetary value. $ 10.25 -> $ -10.25

Methods

negate()

Returns: Money

Usage

$money = money('102500');   // $ 10.3
$money->negate();           // $ -10.3

📌 Back to the contents.