{
"id": "fn-math-exp",
"dataComponent": "math",
"heading": {
"title": "exp",
"badges": ["Math", "JSMath"]
},
"synopsis": "Returns e^x (the exponential function) for a single numeric argument.",
"codeBlocks": [
"extend(\"math\")\\n\\nsput( math:exp(1) )\\n# => ~2.718281828\\n\\nsput( math:exp(0) )\\n# => 1\\n"
],
"notes": [
"One numeric argument only. Returns e^(value)."
]
}