cardziie93 cardziie93 20-12-2022 Computers and Technology Answered function test(name, birth_year, current_year) { const age = current_year - birth_year; const response = name + " is " + age; return response; } test("john", 1917, 2006)