How to calculate the surface area of cylinder in JavaScript

1 Answer

0 votes
const radius = 6;
const height = 19;
  
const cylinder_surface_area1 = (2 * Math.PI * radius * height) + (2 * Math.PI * (radius * radius));
  
const cylinder_surface_area2 = 2 * Math.PI * radius * (radius + height);
  
console.log("Cylinder Surface Area = " + cylinder_surface_area1);
console.log("Cylinder Surface Area = " + cylinder_surface_area2);

  
  
  
  
/*
run:
  
"Cylinder Surface Area = 942.4777960769379"
"Cylinder Surface Area = 942.4777960769379"
  
*/

 



answered Jul 22, 2021 by avibootz
edited Nov 15, 2022 by avibootz

Related questions

1 answer 136 views
1 answer 129 views
1 answer 135 views
1 answer 212 views
1 answer 165 views
1 answer 412 views
1 answer 184 views
...