sinh (x)
const sinh = (x) => (Math.exp(x) - Math.exp(-x))/2
Tense Tuatara
const sinh = (x) => (Math.exp(x) - Math.exp(-x))/2