documentation/test/fixture/simple-private.input.js

12 lines
198 B
JavaScript

/**
* 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;
}