上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 496 下一页
摘要: You have a target object and a source array of objects. You need to copy property from source to target, if it has the same property as the source, yo 阅读全文
posted @ 2022-12-05 14:51 Zhentiw 阅读(33) 评论(0) 推荐(0)
摘要: Given an array of integers nums and an integer target, return true if two numbers such that they add up to target. /* _____________ Your Code Here ___ 阅读全文
posted @ 2022-12-04 22:29 Zhentiw 阅读(21) 评论(0) 推荐(0)
摘要: The optimizing compiler optimizes for what it’s seen. If it sees something new, that’s problematic. Seleting properties has some strange implications 阅读全文
posted @ 2022-12-03 23:11 Zhentiw 阅读(78) 评论(0) 推荐(0)
摘要: Code: benchmark.js const { performance } = require('perf_hooks'); // SETUP 🏁 let iterations = 1e7; const a = 1; const b = 2; const add = (x, y) => x 阅读全文
posted @ 2022-12-03 22:46 Zhentiw 阅读(44) 评论(0) 推荐(0)
摘要: Get all possible paths that could be called by _.get (a lodash function) to get the value of an object type T1 = ObjectKeyPaths<{ name: string; age: n 阅读全文
posted @ 2022-12-03 20:40 Zhentiw 阅读(45) 评论(0) 推荐(0)
摘要: Implement BinaryToDecimal<S> which takes an exact string type S consisting 0 and 1 and returns an exact number type corresponding with S when S is reg 阅读全文
posted @ 2022-12-02 21:41 Zhentiw 阅读(42) 评论(0) 推荐(0)
摘要: Implement the type version of Lodash.intersection with a little difference. Intersection takes an Array T containing several arrays or any type elemen 阅读全文
posted @ 2022-12-01 16:26 Zhentiw 阅读(35) 评论(0) 推荐(0)
摘要: type RGB = [number, number, number] const palette: Record<'red' | 'blue' | 'green', string | RGB> = { red: [255, 0, 0], green: "#00ff00", blue: [0,0,2 阅读全文
posted @ 2022-11-30 15:53 Zhentiw 阅读(30) 评论(0) 推荐(0)
摘要: Typescript 4.9 supports an upcoming feature: Auto-accessors: class Person { accessor name: string constructor(name: string) { this.name = name } } Und 阅读全文
posted @ 2022-11-30 15:24 Zhentiw 阅读(64) 评论(0) 推荐(0)
摘要: Before version 4.9, you will get type error for the code: interface Context { packageJSON: unknown } function tryGetPackageName(context: Context) { co 阅读全文
posted @ 2022-11-30 15:15 Zhentiw 阅读(39) 评论(0) 推荐(0)
上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 496 下一页