Computer Science, asked by sunilkumar197625, 10 months ago

-
How
function
declaration
ends?​

Answers

Answered by Anonymous
3

Answer:

function has two parts: the specification and the body. The specification (spec for short) begins with the keyword FUNCTION and ends with the RETURN clause, which specifies the datatype of the return value. Parameter declarations are optional. Functions that take no parameters are written without parentheses.

Similar questions