1234567891011121314 |
- import { flower } from './part3';
- let h;
- function fn1(x, y) {
- console.log(x + y);
- }
- fn1(12, 2);
- console.log(flower, '哈哈哈');
- var box = document.getElementById("box");
- box === null || box === void 0 ? void 0 : box.addEventListener('click', () => {
- console.log("点击了");
- });
- function fn2(aa) {
- }
- fn2("你好");
|