✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Укажіть, що є параметрами функції calculateArea:
function calculateArea(length, width){ let area = length * width; console.log("Площа прямокутника: ", area);}
calculateArea (5, 7);