Computer Science, asked by ashishroy765, 10 months ago

What is the work of this. Keyward in javascipt in flavocpes

Answers

Answered by gurukulamdivya
1

Answer:

The JavaScript this keyword refers to the object it belongs to.

It has different values depending on where it is used:

  • In a method, this refers to the owner object.
  • Alone, this refers to the global object.
  • In a function, this refers to the global object.
  • In a function, in strict mode, this is undefined.
  • In an event, this refers to the element that received the event.
  • Methods like call(), and apply() can refer this to any object.

I hope this helped you so plz rate the answer...

Answered by Anonymous
0

⤵⤵answer⤵⤵

The JavaScript this keyword refers to the object it belongs to. It has different values depending on where it is used: In a function, this refers to the global object. In a function, in strict mode, this is undefined . In an event, this refers to the element that received the event.✔✔

tysm❤

Similar questions