Skip to content

Instantly share code, notes, and snippets.

@kanian
Created May 21, 2019 13:45
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 kanian/35ce33741c98af5c168c15ba7e263d22 to your computer and use it in GitHub Desktop.
Save kanian/35ce33741c98af5c168c15ba7e263d22 to your computer and use it in GitHub Desktop.
function repeatPattern(xs,n){
let repeated = []
for(var i=1;i<=n;i++){
repeated.push(...xs)
}
return repeated
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment