Exercise 63
- Create a new index63.js file
- Define year variable and assign a number between 2006 and 2017
- Define champion variable and assing a value null
- Show the following ouptup depending the selected year: %champion% was the %year% NHL Champion
- If the value it's not bettwen 2006 and 2017 show the following error: Sorry, please try a differnt year
- Use a switch statement to check for the selected year value
2017 - Pittsburgh Penguins
2016 - Pittsburgh Penguins
2015 - Chicago Blackhawks
2014 - Los Angeles Kings
2013 - Chicago Blackhawks
2012 - Los Angeles Kings
2011 - Boston Bruins
2010 - Chicago Blackhawks
2009 - Pittsburgh Penguins
2008 - Detroit Red Wings
2007 - Anaheim Ducks
2006 - Carolina Hurricanes
- Try all the posible cases/scenarios (even the error message) by changing the year value