In many programming languages I meet: the prefix of variables or functions - the underscore. What is this for?
For example, here is an excerpt from the vk script:
if (vk.al != 3 || vk.navPrefix != '!') { ___to = ___htest.replace(/^(\/|!)/, ''); Or
int ____MAX, ... Why so much? I understand when one set, sometimes conveniently in such cases:
int x = ...; int _x = ...;