COnsider the following example;
require(["dojo/dom", "dojo/domReady!"], function(dom){
dom.byId("helloworld").innerHTML = "Hello New World!";
});
My question is for the dependencies, while we refer 2 JS files, we just have one parameter as the callback (so assume it maps to the first dependent file)
But my question is what usage does it seem appropriate. Ideally I thought it should be always one-to-one mapped.
My question is not actually to understand about the DOJO usage...but I am looking to understand the Javascript concept behind the Mismatch of parameters/callback.