Home > @dinofe/xt-core > floatMultiply
# floatMultiply() function
两浮点数相乘
Signature:
export declare function floatMultiply(arg1: number | string, arg2: number | string): null | number;
# Parameters
Parameter | Type | Description |
---|---|---|
arg1 | number | string | 浮点数 1 |
arg2 | number | string | 浮点数 2 |
Returns:
null | number
相乘结果
# Remarks
修复了 js 乘法精度丢失问题,若相乘失败返回 null
# Example
import { floatMultiply } from '@dinofe/xt-core/common'
floatMultiply(1.33, 2) // 2.66