Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 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 */