part2.js 326 B

1234567891011121314
  1. import { flower } from './part3';
  2. let h;
  3. function fn1(x, y) {
  4. console.log(x + y);
  5. }
  6. fn1(12, 2);
  7. console.log(flower, '哈哈哈');
  8. var box = document.getElementById("box");
  9. box === null || box === void 0 ? void 0 : box.addEventListener('click', () => {
  10. console.log("点击了");
  11. });
  12. function fn2(aa) {
  13. }
  14. fn2("你好");