Blog

Recent Posts

JavaScript binding, function apply, function call

less than 1 minute read

In JavaScript, binding is always explicit, and can be easily lost, so a method using “this” will not refer to the proper object in all situations,  unless yo...

JavaScript event delegation

less than 1 minute read

JavaScript event delegation is a simple technique by which you add a single event handler to a parent element in order to avoid having to add event handlers ...

JavaScript private public privileged access

less than 1 minute read

Public The members of an object are all public members. There are two ways for putting members in a new object. In Constructor function Container(param) {...

Object Oriented Programming

1 minute read

Object Object is an instance of a class.  All objects have a state and behavior. Class Class is the blueprint from which individual objects are created I...

Java Collections

1 minute read

A collection is a object that groups multiple elements into a single unit.

REST Principles

less than 1 minute read

REST stands for Representational State Transfer 5 key principles of REST are -*Give everything a ID Examples http://example.com/orders/2007/11 http://exampl...