Skip to content

Instantly share code, notes, and snippets.

@livemehere
Created April 4, 2024 04:28
Show Gist options
  • Save livemehere/f4631e0cc1c7ff635ef8b6b1501edda2 to your computer and use it in GitHub Desktop.
Save livemehere/f4631e0cc1c7ff635ef8b6b1501edda2 to your computer and use it in GitHub Desktop.
Be careful when initialize array with object
const _grid: T[][] = Array(cols).fill([]); // X (Each index value has same memory address)
const _grid: T[][] = Array.from({ length: cols }, () => []); // OK
const _grid: T[][] = Array(cols).fill(undefined).map(() => []); // OK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment