My Blog

My WordPress Blog

My Blog

My WordPress Blog

Learn Angular

Introduction

Angular is the most popular JavaScript framework and platform for developing client-side (front-end) mobile and desktop web apps or single page applications (SPAs). Angular community has released its latest version known as Angular 8. If you are familiar with previous version of Angular, it will not be difficult for you. You can easily upgrade your […]

How to upgrade Angular CLI older versions to Angular CLI 8

Angular 8 is the latest version of Angular. Here, we are specifying how to upgrade your older version of Angular in the latest one. It doesn’t matter which Angular’s version you are using, you can easily update it to Angular 8 by using the following steps: Step 1: First, check your current version of Angular CLI […]

Forms

Angular forms are used to handle user’s input. We can use Angular form in our application to enable users to log in, to update profile, to enter information, and to perform many other data-entry tasks. In Angular 7, there are 2 approaches to handle user’s input through forms: Both approaches are used to collect user […]

Pipes

In Angular 1, filters are used which are later called Pipes onwards Angular2. In Angular 7, it is known as pipe and used to transform data. It is denoted by symbol | Syntax: Pipe takes integers, strings, arrays, and date as input separated with |. It transforms the data in the format as required and […]

Scroll to top