Created
November 26, 2018 06:55
-
-
Save ryu1-1uyr/a7adb50513fda4be23b715f7c0efa494 to your computer and use it in GitHub Desktop.
typescriptと触れ合う
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
for (let i :number = 0;i<31;i++){ | |
if (i % 15 == 0) { | |
console.log("fizz buzz") | |
} else if (i % 5 == 0) { | |
console.log("buzz") | |
} else if (i % 3 == 0) { | |
console.log("fizz") | |
} else { | |
console.log(i) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment