前端
LeeHanJie
遇事不决,可问春风。
展开
-
获取url链接的二级域名
获取url地址的二级域名原创 2022-10-09 15:42:46 · 816 阅读 · 0 评论 -
在Js中实现类似sleep的睡眠功能
1.同步版本const sleepSync = (ms) => { const end = new Date().getTime() + ms; while (new Date().getTime() < end) { /* do nothing */ }}const printNums = () => { console.log(1); sleepSync(500); console.log(2); console.log(3);};printN原创 2021-07-08 17:51:22 · 641 阅读 · 0 评论