美文网首页
sleep 函数

sleep 函数

作者: Cherry丶小丸子 | 来源:发表于2024-07-10 20:34 被阅读0次
function sleep(delay) {
    var start = new Date().getTime();
    while (new Date().getTime() - start < delay) {
        continue;
    }
}

function test() {
    console.log('111');
    sleep(2000);
    console.log('222');
}

test()

相关文章

网友评论

      本文标题:sleep 函数

      本文链接:https://www.haomeiwen.com/subject/nfuthjtx.html