as you can see here, is working: http://jsfiddle.net/hCGu8/
CODE
function a(){
var testMe = b("hello");
alert(testMe);
}
function b(theVar){
var returnVar = theVar + " returned";
return returnVar;
}
a();
11
solved Return from on function to another javascript [closed]