scrimba
Learn Basic JavaScript
Return a Value from a Function with Return
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

Return a Value from a Function with Return
AboutCommentsNotes
Return a Value from a Function with Return
Expand for more info
index.js
run
preview
console
function minusSeven(num) {
return num - 7;
}

console.log(minusSeven(10));
Console
index.html
-1:14