我目前正在使用Chrome控制台(ctrl + shift + i)研究简单的Javascript代码。下面的代码给了我一个错误。
module.exports = function () { // Uncaught ReferenceError : module is not defined
console.log('a function in file foo');
};
所以我尝试导入模块,但是它说模块未定义。
import module // Uncaught SyntaxError : Unexpected identifier
当前,我无法下载任何IDE。那么,我想知道如何在Chrome浏览器中专门使用关键字模块?