I found below line of code in javascript application.
var auth = parent.auth = parent.auth || {};
I know there is existing Object parent wh
|| is or, the code then returns an empty object, if parent.auth is undefined.
Like checking for null, then creating a new object if null (from java/c#).