Sono nuovo su ES6 (ECMAScript 6) e mi piacerebbe utilizzare il suo sistema di moduli nel browser. Ho letto che ES6 è supportato da Firefox e Chrome, ma ricevo il seguente errore utilizzandoexport
Uncaught SyntaxError: Unexpected token import
Ho un file test.html
<html>
<script src="test.js"></script>
<body>
</body>
</html>
e un file test.js
'use strict';
class Test {
static hello() {
console.log("hello world");
}
}
export Test;
Perché?