Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sethschori/9571dae621a2794fa5660f8a1a82bf97 to your computer and use it in GitHub Desktop.
Save sethschori/9571dae621a2794fa5660f8a1a82bf97 to your computer and use it in GitHub Desktop.
https://repl.it/CQMk/33 created by sethopia
/*
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());
Native Browser JavaScript
>>> 525600
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment