Nallas Assessment

// when the user loses focus window.addEventListener(“blur”, () => { tabChanged= tabChanged+1; if(tabChanged>=allowedLimit){ alert(“Crossed the limit quiz closed”); }else{ alert(“Do not try other application or window warning warning”+tabChanged+” out of “+allowedLimit); } document.title = “Breakup”; }); // when the user’s focus is back to your tab (website) again window.addEventListener(“focus”, () => { document.title = “Patch Up”; });