/** * This function returns the number plus two. * * @param {Number} a the number * @returns {Number} numbertwo * @private */ function returnTwo(a) { // this returns a + 2 return a + 2; }