scrimba
Learn Basic JavaScript
Write Reusable JavaScript with 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

Write Reusable JavaScript with Functions
AboutCommentsNotes
Write Reusable JavaScript with Functions
Expand for more info
index.js
run
preview
console
// Example
function ourReusableFunction() {
console.log("Heyya, World");
}

ourReusableFunction();

// Only change code below this line
Console
index.html
-2:03