var scroll = 40, // Допустим эта переменная хранит значение 'scroll'
def = 0, // Здесь можно определить значение по умолчанию
res = scroll > 150 ? 150 : scroll < 50 ? 50 : def;
function func() {
var i;
console.log(i); // undefined так как инициализация происходит ниже по коду
i = 1;
}
var inp = document.getElementById("note_input");
inp.addEventListener("input", function (e) {
if (e.target.value.length > 0) {
e.target.classList.add("disabled");
} else {
e.target.classList.remove("disabled");
}
});
window.addEventListener("load", function () {
if(window.innerWidth > 768) {
$('.sidebar-block:last-child').addClass('sticky');
} else{
$('.sidebar-block:last-child').removeClass('sticky');
}
window.addEventListener("resize", function () {
if(window.innerWidth > 768) {
$('.sidebar-block:last-child').addClass('sticky');
} else{
$('.sidebar-block:last-child').removeClass('sticky');
}
});
});
import os
print(os.path.exists("Ваш путь до (папки, файла)"))