上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 491 下一页
摘要: 从上到下按照规则比较,直到能得到确切结果为止: 两端类型相同,比较值 两端存在 NaN,返回 false undefined 和 null 只有与自身比较,或者互相比时,才会返回 true 两端都是原始类型,转换成数字比较 一端是原始类型,一端是对象类型,把对象转换成原始类型后进入第 1 步 对象如 阅读全文
posted @ 2025-06-23 02:35 Zhentiw 阅读(5) 评论(0) 推荐(0)
摘要: You’re seeing that const scores = {} satisfies Record<string,number> does check at compile-time “hey, {} can be a Record<string,number>”, but it doesn 阅读全文
posted @ 2025-06-23 02:31 Zhentiw 阅读(6) 评论(0) 推荐(0)
摘要: In Vue 3’s reactivity engine (as of v3.5), globalVersion is a single, ever‐incrementing counter that bumps whenever any reactive value changes. Each c 阅读全文
posted @ 2025-06-23 02:26 Zhentiw 阅读(7) 评论(0) 推荐(0)
摘要: For example when you open a overlay to play video, and you want to disable background page scrolling playBtn.onclick = function() { // ... video.play( 阅读全文
posted @ 2025-06-23 02:24 Zhentiw 阅读(11) 评论(0) 推荐(0)
摘要: https://developer.mozilla.org/en-US/docs/Web/API/Encrypted_Media_Extensions_API 1. Video screenshot blocking when you render video through a DRM‐prote 阅读全文
posted @ 2025-06-23 02:18 Zhentiw 阅读(18) 评论(0) 推荐(0)
摘要: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/try function fetchData() { if (Math.random() < 0.5) throw new 阅读全文
posted @ 2025-06-23 02:10 Zhentiw 阅读(9) 评论(0) 推荐(0)
摘要: export const enum ShapeFlags { ELEMENT = 1, FUNCTIONAL_COMPONENT = 1 << 1, //2 STATEFUL_COMPONENT = 1 << 2, //4 TEXT_CHILDREN = 1 << 3, //8 ARRAY_CHIL 阅读全文
posted @ 2025-06-13 14:26 Zhentiw 阅读(14) 评论(0) 推荐(0)
摘要: monorepo工程基本格式 pnpm-workspace.yaml 指定工程管理目录 packages: - "packages/**" 这里配置之后,我们在安装第三方包的时候,就需要指定安装参数,如果是全局安装,就需要指定-w或者--workspace-root 安装全局第三方包 注意:为了ts 阅读全文
posted @ 2025-06-11 14:04 Zhentiw 阅读(53) 评论(0) 推荐(0)
摘要: Greedy approach: function LIS(nums) { if (nums.length 0) return []; // 先取得第一项 const results = [[nums[0]]]; for (let i = 1; i < nums.length; i++) { con 阅读全文
posted @ 2025-06-10 13:42 Zhentiw 阅读(13) 评论(0) 推荐(0)
摘要: 概述 JavaScript 中所有位运算都会先将操作数通过 ToInt32 转为 32 位有符号整数(补码),再按位进行计算。常用于标志位管理、快速取整、高效色彩处理等场景。 常见运算符 运算符 名称 说明 & 按位与 两位都为 1 时,结果为 1 | 按位或 任一位为 1 时,结果为 1 ^ 按位 阅读全文
posted @ 2025-06-08 15:52 Zhentiw 阅读(19) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 491 下一页