Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Created August 9, 2020 05:55
Show Gist options
  • Save luislobo14rap/ac8e2709bbc3533f7041b0f66e475c59 to your computer and use it in GitHub Desktop.
Save luislobo14rap/ac8e2709bbc3533f7041b0f66e475c59 to your computer and use it in GitHub Desktop.
mil-a.js
// milA.js v1
function milA(repeat = 1){
let a = '';
for(let i = 0; i < repeat; i++){
a += 'a';
};
return a;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment