LUA is a neat scripting language with an emphasis on portability and speed. It is designed to be embedded into other, larger programs. I've never written Javascript. In this post, I compare and contrast LUA with Javascript in various domains of software ...
Read more »
The word "Prototype" in JavaScript doesn't mean an initial version that was quickly put together. It refers to a system instead. (more…)
Read more »
In today's article we will look over file manipulation and debugging of NodeJS applications using Chrome Dev Tools. I'll show you my attempts at using basic JS, how I analyzed the efficiency of my app and how I ended up making it BLAZINGLY FAST. (more…)
Read more »
During my first few years of using JavaScript, I felt like a fraud. Even though I could build websites with frameworks, something was missing. I dreaded JavaScript job interviews because I didn’t have a solid grasp on fundamentals. (more…)
Read more »
Arrays in JavaScript are very commonly used DataStructure. It can be very handy to know your way around Arrays. Here are different ways to create Arrays. (more…)
Read more »