scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
Beyond Function Declarations 1: Function Expressions
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

Beyond Function Declarations 1: Function Expressions
AboutCommentsNotes
Beyond Function Declarations 1: Function Expressions
Expand for more info
index.js
run
preview
console
function getSpendAlert(amount) {
return `Warning! You just spent £${amount}!`
}

console.log(getSpendAlert(100))
Console
/index.html
-3:18