b.js 268 B

1234567891011121314
  1. let q;
  2. q = 90;
  3. console.log(q, 'q');
  4. const box = document.getElementById("box");
  5. box === null || box === void 0 ? void 0 : box.addEventListener("click", function () {
  6. console.log("你好");
  7. });
  8. let a;
  9. a = 12;
  10. a = true;
  11. function fn1(a) {
  12. return a + 1;
  13. }
  14. fn1(1);