Skip to content

Instantly share code, notes, and snippets.

@vitkon
Created December 26, 2016 21:18
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 vitkon/d4a6bb21f6926e97af50b57e38152b9d to your computer and use it in GitHub Desktop.
Save vitkon/d4a6bb21f6926e97af50b57e38152b9d to your computer and use it in GitHub Desktop.
// create a new array of N elements filled with specific value
const isBusy = true;
const n = 12;
const schedule = [...Array(n).fill(isBusy)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment