-
-
Save sethschori/9571dae621a2794fa5660f8a1a82bf97 to your computer and use it in GitHub Desktop.
https://repl.it/CQMk/33 created by sethopia
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
/* | |
SEASONS OF LOVE | |
Complete the function so it generates the numbers of minutes in a year and logs that number to the console. | |
*/ | |
var seasonsOfLove = function() { | |
var minutesInDay = 60*24; | |
var daysInYear = 365; | |
return minutesInDay * daysInYear; | |
} | |
console.log(seasonsOfLove()); |
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
Native Browser JavaScript | |
>>> 525600 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment