Skip to content

Instantly share code, notes, and snippets.

@NavaneethVijay
Created July 26, 2021 16:05
Show Gist options
  • Save NavaneethVijay/6d01ecfaa84c5062a976ecc8c1e0d286 to your computer and use it in GitHub Desktop.
Save NavaneethVijay/6d01ecfaa84c5062a976ecc8c1e0d286 to your computer and use it in GitHub Desktop.
Code snippets
/**
* Generate an array with specific size of number
* @param n {Number}
* @returns {Array}
*/
function getArrayofSize(n) {
return Array.from(new Array(n), (x, i) => i + 1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment