function a() { return "hello"; } function b() { alert(a()); } b();
function a() { return "hello"; } function b(c) { alert(c); } b(a());