Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 07_Day_Functions/07_day_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ console.log(printFullName('Asabeneh', 'Yetayeh'))

```js
// function with multiple parameters
function functionName(parm1, parm2, parm3,...){
function functionName(parm1, parm2, parm3,...otherParms){
//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
Expand Down