At the same time you had stand-alone code-samples which were of dubious quality at best:
if (document.someBoolean) { setEnabled(true); } else { setEnabled(false); }
So yeah. Coupled with lots of Chrome-only APIs, I wouldn't consider this a very high quality article.
how about:
setEnabled( Boolean( document.someBoolean ) )
At the same time you had stand-alone code-samples which were of dubious quality at best:
I mean... Really? :)So yeah. Coupled with lots of Chrome-only APIs, I wouldn't consider this a very high quality article.