javascript Programming Glossary: modulescope
Defining an implementation independent version of the global object in JavaScript http://stackoverflow.com/questions/8280137/defining-an-implementation-independent-version-of-the-global-object-in-javascrip RingoJS and node.js the this pointer points to the current ModuleScope . However we can access the global object through the property.. global object through the property global defined on the ModuleScope . Hence we can access it via the this.global property. Hence.. the actual global object as defined by standards which is ModuleScope . Just because the actual global object in most js implementations..
|