UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

19 lines (17 loc) 424 B
<!DOCTYPE html> <html> <head> <title>math.js | require.js loading</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.20/require.min.js"></script> </head> <body> <script> // load math.js using require.js require(['../../dist/math.js'], function (math) { // evaluate some expression const result = math.eval('1.2 * (2 + 4.5)') document.write(result) }) </script> </body> </html>