Take a look at this JsFiddle:
var requests = [
$.ajax("http://search.twitter.com/search.json", { data: { q: 'ashishnjain' }, dataType: 'jsonp' })
.done(function() {console.log("request");}),
$.ajax("http://search.twitter.com/search.json", { data: { q: 'ashishnjain' }, dataType: 'jsonp' })
.done(function() {console.log("request");})
];
$.when(requests).done(console.log("alldone"));
The expected output is: request request alldone, but in reality this prints alldone request request.
There are actually two bugs in this code (left as an exercise if you enjoy that kind of thing), but ultimately I think this occurs because JavaScript and jQuery are both extremely lenient when given arguments that make no sense whatsoever. In this environment, the "right" thing seems to be "do something or nothing, just do not throw an error!".
Seeing as this code passes JsLint, and has just cost me a couple of hours to debug (the real code was of course a few orders of magnitude more complex), I'm wondering what else I can do to reduce wasting time on such unwarranted leniency. This isn't an isolated example; it seems to happen over and over again. Any suggestions?