我觉得有点愚蠢地问这个问题
"use strict";
console.log("youhou");
var countdown = void 0;
function timer(secondes) {
var now = Date.now();
var then = now + secondes * 1000;
console.log({ now: now, then: then });
}
但是当我在google开发工具上检查所有那些console.logs时,第一个没有弹出并说出" youhou"确认它有效
然后当我在GDT *中写定时器(10)时,它说
VM892:1 Uncaught ReferenceError: timer is not defined
at <anonymous>:1:13
我的功能明确定义我很困惑我不明白? 在codpen加上一切都很好
有人可以帮忙吗?