Contact: aviboots(AT)netvision.net.il
41,599 questions
54,241 answers
573 users
const length = 8; const width = 5; const height = 4; const surfacearea = 2 * (length * width + width * height + height * length); console.log("Surface Area of Cuboid is = " + surfacearea); /* run: Surface Area of Cuboid is = 184 */