Skip to content

Instantly share code, notes, and snippets.

@gpDA
Created February 23, 2022 18:51
Show Gist options
  • Save gpDA/999485a93b90d01f2322d5e2b567cb76 to your computer and use it in GitHub Desktop.
Save gpDA/999485a93b90d01f2322d5e2b567cb76 to your computer and use it in GitHub Desktop.
function fill(times, number) {
if (times <= 0) return [];
return [number].concat(fill(times -1, number));
}
console.log(fill(5, 2)); // [2, 2, 2, 2, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment