/** * Adds one to a number * @param {number} a the input * @returns {number} the output */ function addOne(a) { return a + 1; } /** * This function returns the number one. Internally, this uses * {@link addOne} to do the math. This demonstrates * {@link https://en.wikipedia.org/wiki/Addition Addition} * and {@link https://en.wikipedia.org/wiki/Addition} * * This link refers to nothing: {@link nothing} * * @param {number} a the input * @returns {number} numberone */ module.exports = function(a) { return addOne(a); };