Przejdź do głównej zawartości
"use strict"

if (true) {
function getFirst() {
console.log(1)
}
}

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

getFirst()
getSecond()