UNPKG
bigarith.js
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Do very large math to precision!
osofem/bigarith.js
bigarith.js
/
test
/
cos.js
6 lines
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
console
.
log
(
"%cTesting for cos"
,
"color: blue; font-size: 20pt;"
); then =
new
Date
();
var
s =
BigArith
.
cos
(
"45"
); now =
new
Date
();
assertSimilar
(s,
new
BigArith
(
"1"
).
divide
(
"SQRT2"
));
console
.
log
(
`Took
${now-then}
milliseconds to compute cos 45`
);