只有注册用户登录后才能阅读该文。 阅读全文
摘要:
js console 性能测试
Array.form(), Uint8Array, Array
```js
console.time(`for 计时器`);
for (let i = 0; i < 10000; i++) {
let result = i ** 3;
console.log(`result = ${result}`);
}
console.timeEnd(`for 计时器`);
// for 计时器: 1744.241943359375ms
``` 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
shit api & shit ant 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
JS Object Deep Copy & 深拷贝 All In One
JSON.parse(JSON.stringify(obj));
structuredClone
阅读全文
摘要:
GitHub GraphQL API & GitHub REST API All In One
GitHub GraphQL API v4
GitHub REST API v3
https://developer.github.com/v3/guides/getting-started/
GitHub, GraphQL API, v4 ,REST API, v3, GraphQL, 阅读全文
摘要:
转换 React 为TypeScript 阅读全文
摘要:
ECMAScript 2017 / ES8 先睹为快 All In One
阅读全文
摘要:
JS 对象深拷贝 & JS 对象浅拷贝 All In One
深拷贝 & 浅拷贝
JSON.parse(JSON.stringify(obj));
Object.assign();
structuredClone
阅读全文