Angular Pipes
Angular pipes are mechanisms that can be used to take data and transform it into another forms. Let’s look at an example: Given a variable with a date in our component (2010/01/15) (take care tha...
Angular pipes are mechanisms that can be used to take data and transform it into another forms. Let’s look at an example: Given a variable with a date in our component (2010/01/15) (take care tha...
In this post we will talk about event handling in Angular. Handle events To handle events, use parenthesis: <button (click)="onSendMessage()">Send Message</button> Name elements T...
In this post we will review some of the directives that can be used in Angular. ngFor Given an array of an object, you can use an ngFor directive to loop through it and instantiate an custom comp...
Getting started To use Angular you must install the current NodeJS (https://nodejs.org/en/download/). Once installed, run the following command to install Angular globally: npm install -g @angul...
Let’s see how we can output a variable with a value that is the result of an operation of a task to another task on Azure Devops To put it in context, let’s say we want to retrieve an access token...
In this tutorial I will explain how to create your own static web page, for blog or other projects, for free. Before we start Before we start with this tutorial, you will need to have these tools...