Hi I see this line of code
CtvDfpAd.GetInstance = function () {
if (!CtvDfpAd.__instance) {
CtvDfpAd.__instance = new CtvDfpAd();
}
return CtvDfpAd.__instance;
};
is "instance" a keyword in javascript? i searched online, i don't believe it is, can someone explain?
Thanks
__instanceis a property on CtvDfpAd.