cube
cube(x)
Compute the cube of a value. The cube of x is x * x * x.
Try it yourself:
$1 | cube(2) Your input: cube(2) Processed to: cube(2) Result: 8 lastResult: undefined Variables: {} | 8 |
$2 | 2^3 Your input: 2^3 Processed to: 2^3 Result: 8 lastResult: 8 Variables: { "result": { "mathjs": "BigNumber", "value": "8" }, "$1": { "mathjs": "BigNumber", "value": "8" } } | 8 |
$3 | 2 * 2 * 2 Your input: 2 * 2 * 2 Processed to: 2 * 2 * 2 Result: 8 lastResult: 8 Variables: { "result": { "mathjs": "BigNumber", "value": "8" }, "$1": { "mathjs": "BigNumber", "value": "8" }, "$2": { "mathjs": "BigNumber", "value": "8" } } | 8 |