What is difference between equals operator (== vs ===) in our vanilla as well as custom JS file.
What is the difference between these two equal operates and why different one is used at different JS file?
Eg. In PostLoad.js file, we have
if (typeof (SiebelAppFacade.Postload) == "undefined")
And in some file we have
if( typeof( SiebelAppFacade.sRFormPM ) === "undefined" )