Javascript Numero al Cuadrado

function circleArea(r) {
  
  const area = Math.PI * Math.pow(r, 2);
  
  return area;
}
Sleepy Scarab