20 lines
470 B
HTML
20 lines
470 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<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(['../../lib/browser/math.js'], function (math) {
|
|
// evaluate some expression
|
|
const result = math.evaluate('1.2 * (2 + 4.5)')
|
|
document.write(result)
|
|
})
|
|
</script>
|
|
|
|
</body>
|
|
</html> |