0
Cual es el error? volmen del cuboide
var cuboid = { length: 25, width: 50, height: 200 }; } //tu código va aquí var x= cuboid.length var y= cuboid.width var z= cuboid.height function zz=x * y * z{ return (zz); } console.log(zz)
2 ответов
0
1) tienes un extra } despues de cubioid
2) asi no se declara una function
3) asi no llama
0
Trata
function volume(x,y,z){
return x*y*z;
}
console.log(volume(x,y,z));