Skip to content

Instantly share code, notes, and snippets.

Created July 31, 2016 17:04
Show Gist options
  • Save anonymous/2653faf234298a7cd9fae092f56b78cb to your computer and use it in GitHub Desktop.
Save anonymous/2653faf234298a7cd9fae092f56b78cb 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