You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// typically to keep variables and functions with the same name separate
// when we work on multiple javascript file, we might write same variable name in multiple files in the global scope, and namespace collision happens here. javascript engine override the values
//file1
var greet = 'hello';
//file2
var greet = 'hola'
// faking namespace
// we can fake namespace by creating object container and create same name property there multiple times