document.getElementById('game').onclick = function(event){
console.log(event);
if (event.target.className == 'block' && event.target.innerHTML === ''){
if (hod%2==0) {
event.target.innerHTML = 'x';
}
else {
event.target.innerHTML = '0';
}
hod++;
checkWinner();
}
}
is
проверяет равенство не значения, а ссылки. Вы такое же поведение даже с целыми получить можете: https://stackoverflow.com/questions/15171695/whats... import requests
import time
for i in range(30):
r = requests.get("http://google.com")
print(r)
time.sleep(2)
serverTalk().then(console.log).then(serverTalk).then(console.log);
serverTalk().then(function(result) {
console.log(result);
}).then(function() {
return serverTalk();
}).then(function(result) {
console.log(result);
});
serverTalk()
.then(result => console.log(result))
.then(() =>serverTalk())
.then(result => console.log(result));
Как это делают социальные сети (instagram, fb, vk)?Все по своему делают, у крупных сетей поиск и хранение как правило разнесены по разным серверам - одни сервера занимаются поиском, а другие хранением и отдачей контента.
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');
}
});
});