scrimba
Learn Basic JavaScript
Understanding Undefined Value returned from a Function
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

Understanding Undefined Value returned from a Function
AboutCommentsNotes
Understanding Undefined Value returned from a Function
Expand for more info
index.js
run
preview
console
// Example
var sum = 0;
function addThree() {
sum = sum + 3;
}

Console
index.html
-0:53