
JavaScript has been around for a long time now and on the surface it shares some similarities with Java and C and is a fully-functional Object-Oriented language. However, at the core, JavaScript is more like a functional programming language with some obscure twists. In this article I will show you some tips and techniques you may not be aware of that simulate C-like features and help you write more powerful JavaScript. Deeply Nested Objects JavaScript can do operations on a deeply nested object but if you need to do this, it is better to store it as a reference in a temp… View full post »