mathjs/examples/browser/requirejs_loading.html.md
2018-10-30 20:36:18 +01:00

33 lines
693 B
Markdown

---
layout: default
---
# Requirejs loading
File: [requirejs_loading.html](requirejs_loading.html) (click for a live demo)
```html
<!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(['https://unpkg.com/mathjs@5.2.3/dist/math.min.js'], function (math) {
// evaluate some expression
const result = math.eval('1.2 * (2 + 4.5)')
document.write(result)
})
</script>
</body>
</html>
```
<!-- Note: This file is automatically generated. Changes made in this file will be overridden. -->