Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Question: What is the purpose of ngOnInit() in Angular?
Answer: ngOnInit is a lifecycle hook in Angular that is called after Angular has initialized all data-bound properties of a directive. It is a good place to put initialization logic for your component.

Example:

ngOnInit() {
  // Initialization code here
}
Is it helpful? Yes No

Most helpful rated by users:

©2026 WithoutBook