Edupala

Comprehensive Full Stack Development Tutorial: Learn Ionic, Angular, React, React Native, and Node.js with JavaScript

Month: April 2020

How to add Ionic Google Map and Multiple Marker using Ionic 4

In most mobile applications, maps are one of the most useful tools for users when included in an app. The Ionic allows us to integrate Google Maps into our application. We can achieve integrate the Ionic Google map in two-way Google Map JS library Ionic native SDK map In this example, we will demonstrate how […]

Angular template reference variable in detail

The angular template reference variable is often a reference to a DOM element, child component, or directive within a template so we can access and manipulate it in our component. A template reference variable is a reference to one or more elements within a template. When to use Angular template reference? The angular template reference […]

How to install Angular in Ubuntu

Angular is an open-source, front-end web application development framework, it is TypeScript-based and led by the Angular Team at Google and by a community of individuals and corporations. In these articles, we will cover the installation procedure of angular on the Ubuntu 20 operating system. Step for install Angular in Ubuntu To install Angular in […]

Angular share data between components

An Angular component is the basic build block of an Angular framework. The component is responsible for managing a template and providing it with the data and logic it needs. Components can contain other components. This is known as composition. Components can communicate with each other in a loosely coupled manner and in this article […]

Angular two way data binding – Angular ngModel

Angular two-way data binding allows the exchange of data from the component to the view and from the view to the component. It will help users to establish bi-directional communication. Syntax of Angular two way data binding : ngmodel directive Angular two-way data binding can be achieved using a ngModel directive in Angular. The ngModel […]

What are angular hostbinding and angular hostlistener ?

An angular directive is instructions or guidelines for rendering a template. The directive allows us to change the appearance or behavior of a DOM element. An Angular offers lots of built-in directives, which we had learned in the previous article. We can create our own custom directive to have a feature that is specific to […]

Scroll to top