In the very first post on NodeJS we’ve seen on how to create a simple NodeJS application. This post, in fact, should have preceded the previ...
Read more »
Sunday, February 23, 2014
Getting Started with Node JS
So, you want to learn NodeJS, huh? Apparently, there could be no other reason of why you have landed on this very post. Well, in that case a...
Read more »
Labels:
JavaScript
,
NodeJS
Wednesday, February 19, 2014
Closures in JavaScript
As the definition goes, closures are the inner functions in JavaScript, that has the access to the private variables. If that is not enough,...
Read more »
Labels:
JavaScript
Sunday, February 16, 2014
Inheritance via prototypes, JavaScript
One of the most prominent concept of Object oriented programming is inheritance. By definition, inheritance is the act of inheriting the pro...
Read more »
Labels:
JavaScript
Class properties in JavaScript
Yet another key concept in JavaScript is the class properties or in Object Oriented terminology, the static properties. Alike of the prototy...
Read more »
Labels:
JavaScript
Prototyping in JavaScript
Prototyping in JavaScript is one of the key concept that the language offers. It not only keeps the code clean, but also helps keeping a nom...
Read more »
Labels:
JavaScript
Sunday, February 9, 2014
Working with JSON in KnockoutJS
JSON or JavaScript Object Notation is a format used to transmit the information from one place to another. By one place to another, means fr...
Read more »
Labels:
HTML5
,
JavaScript
,
Knockout.JS
Saturday, February 8, 2014
ViewModel Simplified, KnockoutJS
We have already discussed about Views, ViewModels, Models while we are Getting Started with KnockoutJS . But due to comment of various reade...
Read more »
Labels:
HTML5
,
JavaScript
,
Knockout.JS
Introduction to JSON with padding or JSONP
If you are passionate about JavaScript, and if you have tried making an API call from JavaScript and if you failed tragically, then believe ...
Read more »
Labels:
Azure
,
JavaScript
,
RESTFul
Thursday, February 6, 2014
With binding in KnockoutJS
In this post we will look at yet another important binding in KnockoutJS, the “ With ” binding. Imagine the situation when you have an objec...
Read more »
Labels:
HTML5
,
JavaScript
,
Knockout.JS