toFixed
toFixed(num, precision)
toFixed(num, precision)Arguments
Returns
Example
typescript
import { toFixed } from 'check-engineering/ts-utils';
const number = 3.14159;
const formattedNumber = toFixed(number, 2); // => "3.14"Usage
typescript
import { toFixed } from 'check-engineering/ts-utils';
const price = 19.99;
const roundedPrice = toFixed(price, 1); // => "20.0"Notes
Last updated