I've been looking at the jquery website but I don't think I'm quite understanding this as I'm not seeing any console.logs
$(document).ready(function(){
var a=[1,2,3];
var b='foo';
var c={'bar':'baz'};
$.getScript('script.js',function(a,b,c){
console.log('how can i see a='+a+', b='+b+' and c='+c+' inside here?');
});
});