JavaScript Math cbrt() Method Last Updated : 12 Jul, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report The Math.cbrt() method is used to find the cube root of a number. Syntax:Math.cbrt(x)Parameters: This method accepts a single parameter as mentioned above and described below:x: This parameter is simply a number whose cube root needs to be found.Returns: It returns the cube root of the given number.Example: Below is an example of the Math.cbrt() Method. javascript console.log("cbrt of 64 : " + Math.cbrt(64)); console.log("cbrt of 27: " + Math.cbrt(27)); console.log("cbrt of 0: " + Math.cbrt(0)); console.log("cbrt of -1: " + Math.cbrt(-1)); console.log("cbrt of -27: " + Math.cbrt(-27)); console.log("cbrt of Infinity : " + Math.cbrt(Infinity)); Outputcbrt of 64 : 4 cbrt of 27: 3 cbrt of 0: 0 cbrt of -1: -1 cbrt of -27: -3 cbrt of Infinity : InfinityExample: Here cube root of 8 is calculated to 2 because when any 3 times repeated any number is present inside of the cube root then only one number is taken out as the value of the cube root. ∛8 = ∛2*2*2 = 2 JavaScript console.log("cbrt of 8 : " + Math.cbrt(8)); Outputcbrt of 8 : 2Example: Errors and Exceptions, it is an error case because the cube root of a complex number can not be found which is why its parameter gives an error. javascript // Cube root of complex number can // not be calculated. console.log("cbrt of Complex no : " + Math.cbrt(1 + 2i)); Output:Error: Invalid or unexpected tokenExample: The cube root of the string can not be found which is why the string parameter of the function gives NaN i.e., not a number. Only integer value can be used as the parameter for the function. javascript // Only number can be used as the parameter // here string as parameter gives NaN i.e, // not a number. console.log("cbrt of a string : " + Math.cbrt("gfg")); Output:cbrt of a string: NaNExample: Whenever we need to get the cube root of any number that time we take the help of the Math.cbrt() function in JavaScript. javascript // Here the Math.cbrt() function // calculates cube root for // different numbers taken as // function's parameter. console.log("Output : " + Math.cbrt(125)); console.log("Output : " + Math.cbrt(23)); Output:Output : 5Output : 2.8438669798515654We have a complete list of Javascript Math Objects methods, to check those please go through this Javascript Math Object Complete reference article.Supported Browsers:Google Chrome 38.0Firefox 25.0Opera 25.0Safari 8.0 Comment More infoAdvertise with us K Kanchan_Ray Follow Improve Article Tags : Misc JavaScript Web Technologies javascript-math JavaScript-Methods +1 More Practice Tags : Misc Similar Reads JavaScript Math E Property The Math.E is a property in JavaScript that simply returns the value of Euler's Number, which is nothing but just has a base of the natural logarithm. Its value is approximately around of 2.71828.Syntax:Math.E;Math.E â 2.718Return Values:It simply returns the value of the base of the natural logarit 2 min read JavaScript Math LN2 Property The Math.LN2 is a property in JavaScript that is simply used to find the value of a natural log of 2. The natural log is of base e which is represented as ln. So, the natural log of 2 is represented as ln(2) whose value is approximately 0.693.Syntax:Math.LN2; Parameters: This method does not accept 2 min read JavaScript Math LN10 Property The Math.LN10 is a property in JavaScript that is simply used to find the value of a natural log of 10. The natural log is of base e which is represented as ln. So, the natural log of 10 is represented as ln(10) whose value is approximately 2.302Syntax:Math.LN10; Return Values: It simply returns the 2 min read JavaScript Math LOG2E Property The Javascript Math.LOG2E is a property in JavaScript that is simply used to find the value of base 2 logarithms of e, where e is an irrational and transcendental number approximately equal to 1.442.Syntax:Math.LOG2E;Return Values: It simply returns the value of the base 2 logarithms of e.Example: H 3 min read JavaScript Math LOG10E Property The Javascript Math.LOG10E is a property in JavaScript that is simply used to find the value of base 10 logarithms of e, where e is an irrational and transcendental number approximately equal to 0.434Syntax: Math.LOG10E; Return Values: It simply returns the value of the base 10 logarithms of e.Examp 3 min read JavaScript Math PI Property The Math.PI is a property in JavaScript that is simply used to find the value of Pi i.e, in symbolic form Î which is nothing but it is the ratio of the circumference of a circle to its diameter, whose value is approximately 3.141. It is mainly used in mathematics problems.Syntax:Math.PIReturn values 3 min read JavaScript Math SQRT1_2 Property The Javascript Math.SQRT1_2 is a property in JavaScript that is simply used to find the value of the square root of 1/2, whose value is approximately 0.707106. That is, â (1/2) = 0.707106Syntax: Math.SQRT1_2;Return Values: It simply returns the value of the square root of 1/2, whose value is approxi 2 min read JavaScript Math SQRT2 Property The Math.SQRT2 is a property in JavaScript which is simply used to find the value of the square root of 2, whose value is approximately 1.4142. That is, â 2 = 1.4142 Syntax: Math.SQRT2; Return Value: It simply returns the value of the square root of 2, whose value is approximately 1.4142. Below is a 2 min read JavaScript Math abs() Method Javascript Math.abs() method is used to return the absolute value of a number. It takes a number as its parameter and returns its absolute value. Syntax:Math.abs(value)Parameters:This method accepts a single parameter as mentioned above and described below:value: The number whose absolute value is t 2 min read JavaScript Math acos() Method The Javascript Math.acos( ) method is used to return the arccosine of a number in radians. The Math.acos() method returns a numeric value between 0 and pi radians. The Math acos() is a static method of Math, therefore, it is always used as Math.acos(), rather than as a method of a Math object create 2 min read Like