What is the best way to pass the var full to function b. I don\'t want to use global variables. Is return the only option.
argument? is there something im missing here?
function b(x){ alert(x); };
call with
b(full);