http://rxtx.bandcamp.com/track/stolen-boats
если весь альбом в таком ключе, то это сказка просто
mpl http://intervolna.com:8000/rnv256
сегодня первой половине дня отменный джаз вещали
The !! construct is a simple way of turning any JavaScript expression into
its Boolean equivalent. For example: !!"he shot me down" === true and !!0 ===
false . In listing 4.8 we end up converting a function into its Boolean equiva-
lent, which will always be true . (Sure we could have hardcoded true , but then
we wouldn’t have had a chance to introduce !! ).
интересно, что мешало присвоить ф-ю и отдельно вернуть true
add: function(fn) {
if (!fn.id) {
fn.id = store.nextId++;
return !!(store.cache[fn.id] = fn);
}
}