scrimba
The Ultimate JavaScript Bootcamp
Improve Methods with 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

Improve Methods with Arrow Functions
AboutCommentsNotes
Improve Methods with Arrow Functions
Expand for more info
index.js
run
preview
console
const userData = { 
username: "Reed",
title: "JavaScript Programmer",
getBio() {
console.log(`User (username) is a (title)`);
}
}
Console
index.html
-11:38