자바스크립트의 this는 파이썬의 self와 비슷하다. 그렇지만 미묘하게 다르게 작동하는 부분이 있는 것 같아서 자바스크립트의 this에 대해서 공부해보려 한다. class Test: def __init__(self,_num): self.__num = _num @property def num(self): return self.__num def increaseInner(self): self.__num += 1 return self.__num test = Test(1) increaseGlobal = test.increaseInner increaseGlobal() print(test.num) # 2 increaseGlobal() print(test.num) # 3 increaseGlobal() print(te..