Calculate the hyperbolic cosine of a number.
const cosh = require('cosh'); cosh(1); // => 1.5430806348152437
$ npm install cosh
const cosh = require('cosh');
cosh(x)
Given a Number x, returns the hyperbolic cosine of x as a Number.
x