scrimba
Learn JavaScript
Chrome Extension
Numbers as function parameters
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Numbers as function parameters
AboutCommentsNotes
Numbers as function parameters
Expand for more info
index.js
run
preview
console
// Create a function, add(), that adds two numbers together and returns the sum



console.log( add(3,4) ) // should log 7
console.log( add(9, 102) ) // should log 111
Console
"Hello from JavaScript"
,
index.html
-1:41