Angular 2

7 Best Key Differences - Constructor Vs. ngOnInit [Angular 2]

Angular 2 Constructors:-

1.      The constructor is a default method runs when component is being constructed.
2.      The constructor is a typescript feature and it is used only for a class instantiations and nothing to do with Angular 2.
3.      The constructor called first time before the ngOnInit().


Angular 2 ngOnInit:-

1.      The ngOnInit event is an Angular 2 life-cycle event method that is called after the first ngOnChanges and the ngOnInit method is use to parameters defined with @Input otherwise the constructor is OK.

2.      The ngOnInit is called after the constructor and ngOnInit is called after the first ngOnChanges.

3.      The ngOnChanges is called when an input or output binding value changes.

Example as,
import {Component, OnInit} from '@angular/core';

export class App implements OnInit{
  constructor(){

  }

  ngOnInit(){

  }
}


I hope you are enjoying with this post! Please share with you friends!! Thank you!!!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^