Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
JavaScript

JavaScript this Keyword

Learn how this is set by call site (rules differ for arrows).

JavaScript this Keyword — a practical guide to JavaScript this keyword with clear examples you can reuse in real projects.

JavaScript Tutorial Series (52/101). Prefer one article? Read the complete JavaScript tutorial.

Short description

Methods, constructors, explicit binding, and arrows each behave differently.

this tip

const obj = {
  name: 'Site',
  greet() {
    return this.name;
  },
};

Leave a reply

Your email address will not be published. Required fields are marked *