Computer >> Máy Tính >  >> Lập trình >> Javascript

Hàm Math.cbrt () trong JavaScript

Hàm cbrt () của đối tượng Math chấp nhận một số và trả về gốc khối lập phương của nó.

Cú pháp

Cú pháp của nó như sau

Math.cbrt(729)

Ví dụ

<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>

Đầu ra

Cube root of the given number: 9