I see in some languages that compile for javascript, like TypeScript and CoffeeScript, the use of @
in variables, as well as cases where it is not used. For example:
w = 10;
@v = 11;
In the end, what is the @
and what is the difference between using it and not?