Area Calculation Javascript

function areaOfCircle(radius) { 
     return Math.PI * Math.pow(radius, 2); 
}

function areaOfRectangle(width, height) { 
     return width * height; 
}

function areaOfSphere(radius) {
     return 4 * Math.PI * (Math.pow(radius, 2));  
}

function areaOfTriangle(baseWidth, height) { 
      return baseWidth * height / 2;
}

Posted

in

by

Tags:

Comments

Leave a Reply