FrontendInterviews.dev

623. Arrow Function this Binding

Easy•

Predict the output in a browser global context.

const obj = {
  x: 1,
  f: () => this.x
}
console.log(obj.f())

What is the correct output/behavior?

Select an option and submit your answer.
Next Problem