mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
9 lines
137 B
JavaScript
9 lines
137 B
JavaScript
/**
|
|
* This function returns the number two.
|
|
* @returns {Number} numbertwo
|
|
*/
|
|
function returnTwo() {
|
|
// this returns 2
|
|
return 2;
|
|
}
|