Przejdź do głównej zawartości
if (true) {
function getFirst() {
console.log(1)
}
}

if (false) {
function getSecond() {
console.log(2)
}
}

getFirst()
getSecond()