上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 499 下一页
摘要: const demoFunc = <TObj extends {}>(obj: TObj, key: ErrorIfNever<keyof TObj, `You much pass at least one key`>) => { return obj[key as keyof TObj] } ty 阅读全文
posted @ 2023-03-30 00:29 Zhentiw 阅读(40) 评论(0) 推荐(0)
摘要: // Initialize a 2D array with zeros const str1 = "Hello" const str2 = "World" const dp = Array.from({ length: str1.length }, () => Array.from({ length 阅读全文
posted @ 2023-03-28 14:30 Zhentiw 阅读(44) 评论(0) 推荐(0)
摘要: Problem: Levenshtein Distance Write a function that takes in two strings and returns the minimum number of edit operations that need to be performed o 阅读全文
posted @ 2023-03-28 14:27 Zhentiw 阅读(66) 评论(0) 推荐(0)
摘要: You're given a non-empty array of arrays where each subarray holds three integers and represents a disk. These integers denote each disk's width, dept 阅读全文
posted @ 2023-03-26 20:06 Zhentiw 阅读(58) 评论(0) 推荐(0)
摘要: In React, every update is split in two phases: During render, React calls your components to figure out what should be on the screen. During commit, R 阅读全文
posted @ 2023-03-20 22:03 Zhentiw 阅读(92) 评论(0) 推荐(0)
摘要: When you want a component to “remember” some information, but you don’t want that information to trigger new renders, you can use a ref. import { useR 阅读全文
posted @ 2023-03-19 03:07 Zhentiw 阅读(63) 评论(0) 推荐(0)
摘要: import { WatermarkOverlay } from '../watermark-overlay' describe('WatermarkOverlay', () => { let cmp: HTMLElement let fixture: HTMLElement let shadow: 阅读全文
posted @ 2023-03-18 02:56 Zhentiw 阅读(42) 评论(0) 推荐(0)
摘要: <style> @media print { .no-print { display: none !important; } } </style> <div class="overlay--container no-print" >...</div> 阅读全文
posted @ 2023-03-16 22:23 Zhentiw 阅读(29) 评论(0) 推荐(0)
摘要: const rtf = new Intl.RelativeTimeFormat( navigator.language ) const res = rtf.format(-2, 'day') console.log(res) // "2 days ago" 阅读全文
posted @ 2023-03-16 15:31 Zhentiw 阅读(38) 评论(0) 推荐(0)
摘要: const calendarEvent = { title: 'abc submit', date: new Date(123), attendees: ["Steve", {name: 'Steve'}] } const copied = structuredClone(calendarEvent 阅读全文
posted @ 2023-03-16 15:18 Zhentiw 阅读(59) 评论(0) 推荐(0)
上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 499 下一页