Implement Math
Implement https://tc39.github.io/ecma262/#sec-math-object
test with node test/test.mjs "built-ins/Math/**/*.js"
I’m in the process of creating a new equivalent Math library using Rust’s standard library and WebAssembly to avoid relying on the host’s Math object.
There is a port of https://www.netlib.org/fdlibm/ at https://github.com/rtoy/fdlibm-js/tree/gh-pages .
And some implementations of ES6 Math additions at https://github.com/kangax/compat-table/issues/392#issuecomment-240196072 (implemented just for fun).
The Math object is now specified using algorithm steps: https://github.com/tc39/ecma262/issues/2119