{
"id": "fn-math-log",
"dataComponent": "math",
"heading": {
"title": "log",
"badges": ["Math", "JSMath"]
},
"synopsis": "Returns the natural logarithm (base e) of a single numeric argument > 0.",
"codeBlocks": [
"extend(\"math\")\\n\\nsput( math:log(1) )\\n# => 0\\n\\nsput( math:log(10) )\\n# => ~2.30258509299\\n"
],
"notes": [
"Accepts 1 argument > 0. If <= 0, may produce error or NaN (bridge-dependent)."
]
}