window.addEventListener('load', function() {
function f(){
console.log('12');
}
setInterval('f()', 1000)
})
function test() {
let x = 123;
setTimeout("alert(x)",0); // x не видна
}
test();
function onload() {
function f(){
console.log('12');
}
setInterval(e=>eval("f()"), 1000)
}
onload();