{
"id": "fn-math-log10",
"dataComponent": "math",
"heading": {
"title": "log10",
"badges": ["Math", "JSMath"]
},
"synopsis": "Computes the base-10 logarithm of a single numeric argument > 0.",
"codeBlocks": [
"extend(\"math\")\\n\\nsput( math:log10(1000) )\\n# => 3\\n\\nsput( math:log10(1) )\\n# => 0\\n"
],
"notes": [
"One argument, must be positive. Returns log base 10 of value."
]
}