Advertisements
Advertisements
प्रश्न
Write a program in JavaScript to find the cube of a number using function.
थोडक्यात उत्तर
उत्तर
<html>
<head>
<title> print the cube number
</title>
</head>
<Title>
Function cube</Title>
<Script type = “text/Javascript”>
<!—
var input = window.prompt (“Enter value : ”, “0”);
var v = parselnt (input); var c = cube (v);
document, write In (“<br><h4><u> cube function </u> </h4>”);
document, write In (“Number *V* “<br> The cube =” *C);
function cube (x)
{
var cube = x* x * x; return c;
}
//–>
</script>
</head>
<body>
</body>
</html>
OUTPUT
Enter value: 5
Cube Function Number: 5
The cube: 125
shaalaa.com
JavaScript Functions
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
The parameters work as ______.
Larger programs are divided into smaller are called ______.
Which of the following is used to enhance reusability and program clarity.
What is a function in JavaScript?
What is the use of function?
Write a note on Library functions.
Write a program in JavaScript to find the sum of 10 numbers using function?