Custom Pipes Pipes are a very helpful feature in Angular. There are some built-in pipes, but I can also build my own pipes, that is called Custom Pipe. In this blog, we will learn about Custom Pipe in Angular7. Pipes are one of the interesting features of angular but sometimes built-in pipes are not sufficient […]
Know how to create a simple carousel with Angular
In this blog, we are going to discuss, how to create a simple carousel in Angular. For creating a carousel, first, install ng-bootstrap. So, open the terminal and write down the folder structure, and type: npm install –save @ng-bootstrap/ ng-bootstrap Next, go to app.module.ts page app.module.ts import { NgbModule } from ‘@ng-bootstrap/ng-bootstrap’; imports: [ NgbModule […]