scrimba
Arrow functions, Map & Filter
Arrow function syntax
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

Arrow function syntax
AboutCommentsNotes
Arrow function syntax
Expand for more info
index.js
run
preview
console
function allCaps(string){
return string.toUpperCase()
}

console.log(allCaps('hello, world'))

const allCapsArrowFunction = (string) => {
return string.toUpperCase()
}

console.log(allCapsArrowFunction('hello, world with arrows!'))
Console
"HELLO, WORLD"
,
"HELLO, WORLD WITH ARROWS!"
,
index.html
-3:46