Javascript numero al cuadrado

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