{
"id": "fn-math-asinh",
"dataComponent": "math",
"heading": {
"title": "asinh",
"badges": ["Math", "JSMath"]
},
"synopsis": "Computes the inverse hyperbolic sine of a numeric argument.",
"codeBlocks": [
"extend(\"math\")\\n\\nsput( math:asinh(0) )\\n# => 0\\n\\nsput( math:asinh(1) )\\n# => ~0.881373\\n"
],
"notes": [
"Accepts 1 numeric argument of any real value.",
"Returns a float representing asinh(x)."
]
}