pull/937/merge
Girish 7 months ago committed by GitHub
commit 1f65a95e85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -197,10 +197,10 @@ console.log(printFullName('Asabeneh', 'Yetayeh'))
```js ```js
// function with multiple parameters // function with multiple parameters
function functionName(parm1, parm2, parm3,...){ function functionName(parm1, parm2, parm3,...otherParms){
//code goes here //code goes here
} }
functionName(parm1,parm2,parm3,...) // during calling or invoking three arguments needed functionName(parm1,parm2,parm3,parm4,...parm5) // during calling or invoking three arguments needed
// this function takes array as a parameter and sum up the numbers in the array // this function takes array as a parameter and sum up the numbers in the array

Loading…
Cancel
Save