Angular Check ngIf Null or Empty | Angular Check If Array is Empty
In this post we will give you information about Angular Check ngIf Null or Empty | Angular Check If Array is Empty. Hear we will give you detail about Angular Check ngIf Null or Empty | Angular Check If Array is EmptyAnd how to use it also give you demo for it if it is necessary.
Hi Dev,
This tutorial will provide example of how to check array is empty in angular. i would like to show you angular check if string is empty or null. This article will give you simple example of angular check if object is empty ngif. it’s simple example of angular check ngif array is empty. Alright, let’s dive into the steps.
In this post, i will give three examples with checking condition with ngIf in angular. You can easily check with angular 6, angular 7, angular 8 and angular 9.
1) Angular Check ngIf Null or Not
2) Angular Check ngIf String is Empty or Not
3) Angular Check ngIf Array is Empty or Not
1) Angular Check ngIf Null or Not
src/app/app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
myVar = null;
}
src/app/app.component.html
<h1>angular ngif check null example - onlinecode</h1>
<div *ngIf="myVar">
<p>Variable is not null.</p>
</div>
<div *ngIf="!myVar">
<p>Variable is null.</p>
</div>
2) Angular Check ngIf String is Empty or Not
src/app/app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
myVar = "";
}
src/app/app.component.html
<h1>angular ngif check empty example - onlinecode</h1>
<div *ngIf="myVar">
<p>Variable is not empty.</p>
</div>
<div *ngIf="!myVar">
<p>Variable is empty.</p>
</div>
3) Angular Check ngIf Array is Empty or Not
src/app/app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
myVar = [];
}
src/app/app.component.html
<h1>angular ngif check array empty example - onlinecode</h1>
<div *ngIf="myVar?.length">
<p>Array is not empty.</p>
</div>
<div *ngIf="!myVar?.length">
<p>Array is empty.</p>
</div>
I hope it can help you…
Hope this code and post will helped you for implement Angular Check ngIf Null or Empty | Angular Check If Array is Empty. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs