是长不是长 113 天前 JS检测客户端访问 function checkDeviceAndAlert() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; const mobileRege... # 没有什么用的文章 # JS
是长不是长 114 天前 TypeScript计算加法 type NumOrStr = number | string; function safeAdd(a: NumOrStr, b: NumOrStr): number { return Number(a) + Number(b); } console.log(s... # TypeScript