1 2 3 4 5 6 7 8
function t(code) { var f = new Function(code); try { f(); } catch (e) { } } t(""); t(""); t(""); t("this.function = 7;");