Contact: aviboots(AT)netvision.net.il
39,890 questions
51,821 answers
573 users
const length = 6; const width = 3; 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 = 108" */