{
"id": "fn-math-asin",
"dataComponent": "math",
"heading": {
"title": "asin",
"badges": ["Math", "JSMath"]
},
"synopsis": "Returns the arcsine of a single numeric argument in [-1,1], result in radians.",
"codeBlocks": [
"extend(\"math\")\\n\\nsput( math:asin(0) )\\n# => 0\\n\\nsput( math:asin(1) )\\n# => ~1.57079632679\\n"
],
"notes": [
"One argument only, must be in the domain [-1,1].",
"Returns a float in the range [-π/2, π/2]."
]
}