Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started