x = 5
y = x++
console.log(y) // выведет 5
console.log(x) // выведет 6
$('.video-data-edit').on('click', '#video-add-btn', function(){
$(this).before( $('#video-add-template').html() )
})
var mySuperImportantVariable = 42
document.addEventListener('click', function(evt){ // анонимная функция
// Она видит переменную mySuperImportantVariable
// и может вызвать что-то с параметрами
console.log(mySuperImportantVariable, evt)
})