documentation/test/fixture/simple-two.input.js
2015-03-30 11:20:10 -04:00

11 lines
186 B
JavaScript

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