Junior — Senior
What output will appear in the console when running code #19
livecode
Task condition
Determine what text will be printed to the console
// let name = "Baca";
// function sayHi() {
console.log(name);
}
}
// setTimeout(function() {
let name = "Petya";
sayHi();
}, 1000);