check math.js evalution performance (v2)

Revision 2 of this benchmark created on


Preparation HTML

<script src="https://unpkg.com/mathjs@11.9.1/" />

Setup

let a = 234;
let b = 7926;

Test runner

Ready to run.

Testing in
TestOps/sec
with math.js evaluate
let c = math.evaluate('a / b', {
	a: a,
	b: b
})
ready
bulit calculation
let c = a / b;
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.