摘要:
function diffGetTime(date1, date2) { return date2.getTime() - date1.getTime(); } function bench() { let start = Date.now(); ...... let end = Date.now(); diffGetTime(star, end); } 阅读全文
摘要:
转自: https://blog.csdn.net/zhanglong_longlong/article/details/71172327 阅读全文
摘要:
const object1 = { a: 'somestring', b: 42, c: false}; console.log(Object.keys(object1));// expected output: Array ["a", "b", "c"] const object1 = { a: 阅读全文
摘要:
1. 首先安装homebrew. terminal下运行: 阅读全文
摘要:
安装Redis服务自动启动 redis-server --service-install redis.windows-service.conf --loglevel verbose 常用命令 卸载服务:redis-server --service-uninstall 开启服务:redis-serve 阅读全文
摘要:
mac 安全与隐私 没有允许从以下位置下载的应用程序选项 打开终端输入 sudo spctl --master-disable 回车 阅读全文
摘要:
注册时,可以设置scope,来超出所在文件夹: navigator.serviceWorker.register('/scripts/script.js', { scope: '/' }) 在web.config中,设置header <configuration> <location path="S 阅读全文
摘要:
Service Worker管理 chrome://serviceworker-internals/ content chrome://settings/content Service Worker管理 chrome://serviceworker-internals/ content chrome 阅读全文
摘要:
dotnet new mvc --auth None --no-https false --no-restoredotnet restoredotnet run 阅读全文
摘要:
得到文件扩展名 得到日期差值字符串 --年select datepart(YEAR,'2013-06-08')select datepart(yyyy,'2013-06-08')select datepart(yy,'2013-06-08')--月select datepart(MONTH,'201 阅读全文