easy-deep-learning
Образование, ВУЗы
<span class="button" tabindex="0" role="button">
<span class="button__text">Кнопка</span>
</span>
jQuery('.products_list_index').hide();
jQuery('#products_list_index .item').removeClass("selected");
jQuery(thisClass).show();
jQuery(this).addClass("selected");
$.ajax({
type: 'POST',
url: '/',
data: {
'reverse_call': true,
name: name,
phone: phone
},
success: function() {
$('table#reverse_call .close').click();
alert('Обратный звонок успешно заказан');
}
});
Date.now()
How it feels to learn JavaScript in 2016
Компью́тер
(англ. computer, — «вычислитель»)
вычислитель — вычисляет
var a = 1;
function foo() {
console.log(a);
}
function bar() {
var a = 2;
foo();
}
bar(); // ???
var a = 1;
function foo() {
console.log(a);
}
function bar() {
var a = 2;
foo();
}
bar(); // 1