sinh(x)

JavaScript
const sinh = (x) => (Math.exp(x) - Math.exp(-x))/2sinh(x):=(e^x-e^{-x})/2
Source

Also in JavaScript: