This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This function is quite flexible because it can handle any number of input arrays and | |
// doesn't require them to be of equal length. It interleaves as many elements as possible | |
// from each array, in the order that the arrays (and elements) were provided. | |
/** | |
* Interleaves elements of multiple arrays. | |
* The function takes any number of arrays as arguments. | |
*/ | |
function interleaveArrays(...args) { | |
// Find the maximum length among all arrays |
How to start a new Node.js project:
npx license mit > LICENSE
npx gitignore node
npx covgen YOUR_EMAIL_ADDRESS
npm init -y