Created
January 8, 2015 07:29
-
-
Save naosim/62ded0459e658dbf69cd to your computer and use it in GitHub Desktop.
恵方巻きの方角を取得する
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
var getRolledThicklyDirection = function(year) { | |
var directions = [ | |
"西南西微西", | |
"南南東微南", | |
"北北西微北", | |
"南南東微南", | |
"東北東微東" | |
]; | |
return directions[year % 5]; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment