Date: 07/20/12 (Web Development) Keywords: no keywords Hi!
function a() {
alert('Hi, I'm a function!');
}
a(); // works great
a.b(); // call undefined function
So, are there any ways to catch calls a.b() in my function a()?
|