标签:
function a() { return "hello"; } function b() { alert(a()); } b();
function a() { return "hello"; } function b(c) { alert(c); } b(a());
一个简单的耦合问题
原文地址:http://www.cnblogs.com/feile/p/5325563.html