9
I see in some languages that compile for javascript, such as Typescript and Coffeescript, the use of @
variables, as well as cases where it is not used. For example:
w = 10;
@v = 11;
After all, what is the point of @
and the difference between using it or not?