hyperbolic-like function code example
Example 1: sinh(x)
const sinh = (x) => (Math.exp(x) - Math.exp(-x))/2
Example 2: sinh(x)
sinh(x):=(e^x-e^{-x})/2
const sinh = (x) => (Math.exp(x) - Math.exp(-x))/2
sinh(x):=(e^x-e^{-x})/2