0
Code Questions: what is the return value of the function in the description below đThis is a javascript function. đ
function test(name, birth_year, current_year) { const age = current_year - birth_year; const response = name + " is " + age; return response test("mike", 1861, 1900)
2 Answers
+ 1
Function return value: "Miku 39".
0
Thanks