For the past few months, I have been very busy devoting my personal time, to IFe. IFe stands for Islam Festival Edinburgh, and its an initiative to promote the message of ISLAM which stands for PEACE that is so misunderstood by the world today and linked to terrorism & violence, which is not what it is really all about. I have been questioned by my peers @ work of what ISLAM is , and what the QURAN all about. To them, I invite you to go to www.islamfestival.com and DISCOVER ISLAM. In religion, BELIEF comes first , than rationalising it. In maths / science, PROVABLE facts, come first then a CONCLUSION, to support the HYPOTHESIS. If today, blue-tooth and WI-FI technology does exist and mp3/images/documents can be downloaded, then surely- why is it so hard to believe that more than 1400 years ago , there was a way for GOD's word which comprises of the Holy Quran to be downloaded to a very human prophet. And if versions in software and the need of upgrades do exist, so from an...
Dynamic binding VS Static binding JavaScript features DYNAMIC binding, so all object references are checked at run time. Java, on the other hand, is based on STATIC binding, meaning that all object references must exist and be valid at compile time. However, an object-oriented language may require dynamic method bindings because polymorphism allows multiple definitions of methods sharing a common name, and calling such polymorphic methods often cannot be resolved until run time. The most obvious reason for this difference is that JavaScript is NOT compiled, so checking object references at compile time has no meaning. Object-oriented VS Object-based JavaScript is based on a simple object-oriented paradigm. This paradigm is often called object based, as opposed to object oriented. If you are used to a truly object-oriented language such as C#, Java, or C++, you will find much of that functionality is missing in JavaScript. For example...