Sharepoint - Proper way to call multiple functions using SP.SOD.executeFunc
I normally follow as below
SP.SOD.executeFunc('sp.js', 'SP.ClientContext', readyFunction);
function readyFunction() {
getCurrUser();
evalGroups();
getDeptMgrs();
getItemOwner();
}
Its more readable!