JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
What does this log?
code
const obj = {
name: 'obj',
arrow: () => this.name,
};
console.log(obj.arrow());Loading compiler resources...
Active Recall Drill Session
const obj = {
name: 'obj',
arrow: () => this.name,
};
console.log(obj.arrow());