home
Backend
Programming Language
Database
Message Queue
Microservice
Security
Operating System
Frontend
JavaScript
TypeScript
Vue
React
Design
Hobby
Metaphysics
Music
一切福田,不離方寸,從心而覓,感無不通。
Daily Archives: 2022年5月25日
修复JS中toFixed不是真四舍五入的问题
1
2
3
4
5
6
7
function
toFixed
(
num
,
fixed
)
{
var
times
=
Math
.
pow
(
10
,
fixed
)
;
var
newNum
=
num *
times
+
0.5
;
newNum
=
parseInt
(
newNum
,
10
)
/
times
;
return
newNum
;
}
龙生
25 May 2022
View Details
Copyright © 2024
Longsheng
All rights reserved