Data structures — Queue implementation in javascript

Read the original version

The Queue is a FIFO (first-in, first-out) data structure. It means that any data stored first will be the first to be removed — just like a queue.


Implementing Maths in Javascript: Set theory

Read original version

The set is used for checking the presence of an item. Set theory is an important part of mathematics.


Binding in Javascript example!

Read the original version

To attach an object to the scope & context of a function the function bind is used. The attachment of the scope & context is called as binding.