03 2023 档案
摘要:https://github.com/f/awesome-chatgpt-prompts javascript学习 Let’s roleplay. You are an online JavaScript course. Your task is to quickly assess the stud
阅读全文
摘要:###工厂模式 function createPerson(name, age, job) { let o = new Object(); o.name = name; o.age = age; o.job = job; o.sayName = function() { console.log(th
阅读全文
摘要:/** * 每个csv文件转成一个person对象,然后根据父子关系构建树 */ const transferTree = () => { interface Person { name: string age: number parent: string | null children?: Per
阅读全文
摘要:You can use the following code to detect the different browsers: // Check for Chrome var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/
阅读全文