chrome 80

Posted ajanuw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了chrome 80相关的知识,希望对你有一定的参考价值。

可选的链接

let a;
a?.forEach(console.log);

模块

<script>
  new Worker("main.js", { type: "module" });
</script
// main.js
import { name } from "./test.js";
console.log('worker');
console.log(name);
// test.js
export const name = "ajanuw";

以上是关于chrome 80的主要内容,如果未能解决你的问题,请参考以下文章