/** * This function returns the number plus two. * * @param {Number} a the number * @returns {Number} numbertwo * @example * var result = returnTwo(4); * // result is 6 */ function returnTwo(a) { // this returns a + 2 return a + 2; }