scrimba
Learn Basic JavaScript
Global vs. Local Scope in Functions
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

Global vs. Local Scope in Functions
AboutCommentsNotes
Global vs. Local Scope in Functions
Expand for more info
index.js
run
preview
console
var outerWear = "T-Shirt";

function myOutfit() {


return outerWear;
}

console.log(myOutfit());
Console
index.html
-1:51