Contact: aviboots(AT)netvision.net.il
39,890 questions
51,821 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 */