JS

JavaScript Code Output Challenge - Javascript func...

12.

What will be the output of the following code?

function calculateCircleArea(radius) {
  return Math.PI * radius * radius;
}

console.log(calculateCircleArea(3));

28.274333882308138

27

18

9