What does assigning a variable to {}, mean? Is that initializing it to a function? I have code in a javascript file that says this
{}
GLGE.Wavefront =
This is javascript object notation. Particularly {} means empty object, the same as new Object();. See json.org.
new Object();