Prototypal Inheritance in Javascript

Prototypal Inheritance in Javascript

Prototypal Inheritance In javascript  prototypal inheritance means an object getting the access to the properties and methods of another objects.As we know arrays[] and functions() are basically object{} in javascript.So…
Observables in Angular

Observables in Angular

What are the Observables? In a very simple terms we use Observables to perform  asynchronous operations and handle asynchronous data. Another way of performing asynchronous operations or handling asynchronous  data…
Custom Directive in Angular

Custom Directive in Angular

What is Custom Directive? Similar to the in-built directives, custom directive is also used to extend the functionality of HTML. Only difference is that custom directive is implemented manually by…
Promise in Javascript

Promise in Javascript

What is Promise in Javascript? In terms of javascript promise is nothing but an Object. In general terms promise is similar to real life promise. For example Suppose A and…
Scope Chain in Javascript

Scope Chain in Javascript

Scope Chain is process of looking for the variable at own local memory of the function. If do not find it in the local memory of that function then it…