✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде результатом виконання цього коду?
function getSquare(a) { return a * a; console.log(`Square is ${a * a}`);}
getSquare(8);