this keyword

this keyword

  • There is a Car class -> Car{this.something}

  • There is 2 objects of Car class -> car1, car2

  • When I access Car with car1 -> [this == car1][this.something == car1.something]

  • When I access Car with car2 -> [this == car2] [this.something == car2.something]