{
"id": "fn-math-cbrt",
"dataComponent": "math",
"heading": {
"title": "cbrt",
"badges": ["Math", "JSMath"]
},
"synopsis": "Returns the cube root of a single numeric argument.",
"codeBlocks": [
"extend(\"math\")\\n\\nsput( math:cbrt(8) )\\n# => 2\\n\\nsput( math:cbrt(-27) )\\n# => -3\\n"
],
"notes": [
"Takes 1 numeric argument, which can be negative or positive.",
"Returns the real cube root as a float."
]
}