Question: Write a javascript function called yearsAgo that takes in a year and return how many years ago that year is from the current year. Use
Write a javascript function called yearsAgo that takes in a year and return how many years ago that year is from the current year.
Use the Date objects getFullYear function.
These asserts will test your function:
assert.equal((new Date().getFullYear() - 1976), yearsAgo(1976)) assert.equal((new Date().getFullYear() - 2000), yearsAgo(2000));
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
