Preview:```ts
function foo<K extends PropertyKey>(
keys: K[]
): Record<K, any> {
return keys.reduce<Record<K, any>>(acc => acc, {})
}
function bar<K extends PropertyKey>(
keys: K[]
): Record<K, any> {
return keys.reduce(acc => acc, {} as Record<K, any>)
}```
You can choose specific lines to embed by selecting them before copying the link.