Skip to content

Instantly share code, notes, and snippets.

@pseudosavant
Created March 10, 2015 18:20
Show Gist options
  • Save pseudosavant/cb9087fbd7244b16aca4 to your computer and use it in GitHub Desktop.
Save pseudosavant/cb9087fbd7244b16aca4 to your computer and use it in GitHub Desktop.
Create an empty dense array
// Create an empty dense array
function denseArray(length) {
return Array.apply(null, Array(length));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment