Declare variables named l, b and h. Initialize them with values 8, 9 and 10 respectively. Calculate the volume of cuboid, store it in another variable named vol and print the result.
Javascript
Answers
Answered by
0
Answer:
means variable must be declared with a particular data type, which tells what type of data the variable will hold. JavaScript variables are loosely-typed which means it does not require a data type to be declared. You can assign any type of literal values to a variable e.g. string, integer, float, boolean etc..
Similar questions