Why is `this` not working in an ES6 arrow function?
An arrow function saves the binding of this
in the closure that's created when the function is created. So it doesn't set this
to the context of the call to the function.
In your case, this
was bound to window
when you created the object, so this.username
is window.username
, not obj.username
.
From the documentation:
An arrow function expression (also known as fat arrow function) has a shorter syntax compared to function expressions and lexically binds the
this
value