Alex d7ffe0b7ec
DelazJ bonification
Co-authored-by: Harrissou Sant-anna <delazj@gmail.com>
2022-01-11 11:17:49 -05:00

19 lines
403 B
Plaintext

{
"name": "log10",
"type": "function",
"groups": ["Math"],
"description": "Returns the value of the base 10 logarithm of the passed expression.",
"arguments": [{
"arg": "value",
"description": "any positive number"
}],
"examples": [{
"expression": "log10(1)",
"returns": "0"
}, {
"expression": "log10(100)",
"returns": "2"
}],
"tags": ["base", "logarithm"]
}