Created
August 9, 2020 05:55
-
-
Save luislobo14rap/ac8e2709bbc3533f7041b0f66e475c59 to your computer and use it in GitHub Desktop.
mil-a.js
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
// 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