値がペニーであるかどうかを確認する最良の方法は何ですか?戻り値0の場合は、Math.flooredの値。1ペニー未満の場合は床につける方法、そうでない場合は
price_usdが00.0031
のようなものであれば、現在以下のコードは$ 0.01の値を返します。返すべきものは0
です。
ただし、値が00.56
の場合は現在は56セントになります。
const rounder = (balance, price_usd) => round(multiply(balance, price_usd));
constructor(props) {
super(props)
this.state = {
asset: props.asset,
balance: props.balance,
value: rounder(props.balance, props.price_usd)
};
this.handleChange = this.handleChange.bind(this);
}
// value: rounder(props.balance, Math.floor(props.price_usd))
100によって乗算及び整数成分が1未満であるかどうかを確認? –
ペニーはいくらですか? –
結果= v <ペニー:0:Math.floor(v); –