I have a.js
and qunits are written in b.js
,input data will be present in a.js
,so inorder to use that input data of a.js
in b.js
,how can i do.i know that both js files can be included in html page.but b.js
contains qunits for javascript methods (just like junits) these will be ran from build.xml
so i cannot have a html Hence i cannot use html.
I tried invoking methods of a.js
since both files are in same directory but didnt worked out.
is there any other way to use data of a.js
in b.js
?