_G [superglobal]

A hard-coded global value that points to the global dictionary. Can be used to access non-identifier globals and change the global dictionary.

_G["$diff"] = 5; // no way to access this via usual globals
_G = {}; // global value dictionary is changed, previous functions are lost unless stored somewhere