[Solved] Return from on function to another javascript [closed]

[ad_1]

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

[ad_2]

solved Return from on function to another javascript [closed]