Created
January 16, 2020 01:13
-
-
Save fu-sen/61f41c58b451d0008133e51a53387bfe to your computer and use it in GitHub Desktop.
(・~・)mog 関数 - Google Apps Script
This file contains 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
function mog(num){ | |
var str=""; | |
for (var i=0; i<num; i++) { | |
str = str + "(・~・)mog "; | |
} | |
str = str.slice(0, -1); | |
return str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment