私はへの新たなんだES6(ECMAScriptの6)、と私はその使用したいモジュールシステムをブラウザに。ES6はFirefoxとChromeでサポートされていると読みましたが、次のエラーが発生します。export
Uncaught SyntaxError: Unexpected token import
test.htmlファイルがあります
<html>
<script src="test.js"></script>
<body>
</body>
</html>
およびtest.jsファイル
'use strict';
class Test {
static hello() {
console.log("hello world");
}
}
export Test;
どうして?