Math ऑब्जेक्ट का cbrt() फ़ंक्शन किसी संख्या को स्वीकार करता है और उसका घनमूल लौटाता है।
सिंटैक्स
इसका सिंटैक्स इस प्रकार है
Math.cbrt(729)
उदाहरण
<html>
<head>
<title>JavaScript Example</title>
</head>
<body>
<script type="text/javascript">
var result = Math.cbrt(729));
document.write("<br>");
document.write("Cube root of the given number: "+result);
</script>
</body>
</html> आउटपुट
Cube root of the given number: 9