var a = [1, 2, 3, 4, 5],
b = [1, 2, 3, 4, 5, 6];
function diff (a, b) {
if (a.length > b.length) {
return _.difference(a, b);
} else {
return _.difference(b, a);
}
}
console.log(_.difference(b, a)); // [6]
var $btn = $('#testBtn'),
$input = $('[name="test"]');
$btn.on('click', function () {
var text = $(this).data('text');
$input.prop('value', text);
});
// Выполнится 2-м
document.addEventListener("DOMContentLoaded", function () {
function sdf(){
var atr = document.getElementById('P2').getAttribute('data-price');;
// alert(atr);
window.atr = atr;
// alert(window.atr);
// console.log(atr);
}
sdf();
// <-- вот тут вы можете проверить свой atr
});
// Выполнится 1-м
alert(window.atr); // выводит undefined