scrimba
Introduction to ES6+
Arrow 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

AboutCommentsNotes
Arrow Functions
Expand for more info
index.js
run
preview
console
//function declaration
function breakfastMenu() {
return "I'm going to scrambled eggs for breakfast";
}

//anonymous function
const lunchMenu = function() {
return "I'm going to eat pizza for lunch";
}
Console
/index.html
-4:22