2 Respostas
+ 3
Hi there,
I created them for you :) Check them out in my codes
0
var cuboid = {
length: 25,
width: 50,
height: 200
};
//your code goes here
var x = cuboid.length
var y = cuboid.width
var z = cuboid.height
console.log(x*y*z);