I found below line of code in javascript application.
var auth = parent.auth = parent.auth || {};
I know there is existing Object parent wh
it means if the value of parent.auth is falsy(false, 0, null, undefied etc) then assign the value {}(empty object) to the variable auth
parent.auth
{}
auth