Contact: aviboots(AT)netvision.net.il
39,894 questions
51,825 answers
573 users
const _length = 7; 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 = 122" */