Skip to content

Instantly share code, notes, and snippets.

@nrkn
Created October 9, 2019 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nrkn/307c0fae86ac972fcbd6d139c900263d to your computer and use it in GitHub Desktop.
Save nrkn/307c0fae86ac972fcbd6d139c900263d to your computer and use it in GitHub Desktop.
const createSequence = (length, cb) =>
Array.from({length}, ( _v, k ) => cb( k ))
// create array of characters a-z
const alphaLower = createSequence(
26, i => String.fromCharCode( i + 97 )
)
// create an array of empty arrays
const arr2d = createSequence( 10, () => [] )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment