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