let offset = 0; function func() { alert('preved'); } function updateOffset(v) { const exec = v > 100 && offset <= 100 || v < 100 && offset >= 100; offset = v; if (exec) { func(); // вызов функции } }