Вадим Пацев / @basvasilich
Зависимость (аддикция) — навязчивая потребность, подвигающая человека к определенной деятельности.
Я пришел в индустрию
Prototype, Script.aculo.us
jQuery
только лучше
var $ = document.querySelectorAll.bind(document);
Element.prototype.on = Element.prototype.addEventListener;
$('#somelink')[0].on('touchstart', handleTouch)
$('body').addClass('hasJS');
document.body.classList.add('hasJS');
$('body').removeClass('hasJS');
document.body.classList.remove('hasJS');
element.dataset.user = JSON.stringify(user);
element.dataset.score = score;
function request(type, url, opts, callback) {
var xhr = new XMLHttpRequest(), var fd;
if (typeof opts === 'function') {
callback = opts;
opts = null;
}
xhr.open(type, url);
if (type === 'POST' && opts) {
fd = new FormData();
for (var key in opts) {
fd.append(key, JSON.stringify(opts[key]));
}
}
xhr.onload = function () {
callback(JSON.parse(xhr.response));
};
xhr.send(opts ? fd : null);
}
var get = request.bind(this, 'GET');
var post = request.bind(this, 'POST');
typeof (function(){})() // ???
var obj = {};
var foo = function() {
(function() {
console.log(this);
})();
}
obj.foo = foo;
obj.foo(); // ???
* — это лично мой список
Там где нет в этом необходимости