Search results for "angular"


Custom Pipes in Angular 16: A Detailed Guide

on August 26, 2023 🔥 252 views

Angular pipes are a powerful way to transform data in Angular applications. They can be used to format data, convert it to different units, or even perform complex calculations. What are Angular pipes? Angular pipes are functions that transform data. They are attached to Angular components and can be used to format data, convert it […]

post

Answer for Reusable component in Angular 10 for displaying a list of items

on March 1, 2023 🔥 0 views

@Component({ selector: ‘app-list’, template: ` <ul> <li *ngFor=”let item of items”> {{item}} </li> </ul> `, styles: [] }) export class ListComponent { @Input() items: any[]; }

discussion

Reusable component in Angular 10 for displaying a list of items

on January 27, 2023 🔥 0 views

Hello everyone, I have the following code written in Angular 10.I came across this question in https://www.adaface.com/blog/angular-interview-questions/   import { Component, Input } from ‘@angular/core’;   @Component({   selector: ‘app-list’,   template: `     <ul>       <li *ngFor=”let item of items”>         ____________       </li>     […]

discussion

AOT and JIT compilation in Angular 10

on January 27, 2023 🔥 0 views

Hello everyone, I have the following code written in Angular 10.I came across this questions in https://www.adaface.com/blog/angular-interview-questions/. Start your code here import { Component, OnInit } from ‘@angular/core’; @Component({ selector: ‘app-root’, template: ` <h1>{{ title }}</h1> `, styles: [] }) export class AppComponent implements OnInit { title = ‘Welcome to Angular 10!’; ngOnInit() { console.log(‘Compiling […]

discussion

Skills Every Angular Developer Must Have

on December 14, 2022 🔥 1222 views

Angular is a powerful framework that enables web developers to create single-page applications with no or minimal page reloads.  The framework comes with its own set of quirks and pitfalls, which makes it difficult for users without the right knowledge and skills to work with it properly. If you are looking to hire angular developers […]

news

Create Library In Angular 12 – Search Highlighter

on September 20, 2021 🔥 10257 views

In this tutorial, we will see how to Create a Library In Angular 12. Search Highlighter is what we are going to create throughout this article. If you are not aware of what is an angular library – Basically library is created to use some piece of code or you can say functionality to various […]

post

Easily Translate Angular 12 App Using ngx-translate

on May 24, 2021 🔥 119134 views

Code and Demo This tutorial will see how we can Easily Translate the Angular 12 App Using the library Angular 12 with ngx-translate The internationalization (i18n) library for Angular ngx-translate: It is an internationalization library for Angular. It will let you define translations for your content in different languages and you can switch languages easily. […]

post

Answer for What is difference between AngularJS and Angular?

on May 18, 2021 🔥 0 views

Yes, Angular JS is a JavaScript framework it was used to develop a web application.     Angular JSThis framework has a model-view-controller (MVC) that acts as the central component as it manages data, logic, rules, and expresses how the applications behave.    AngularAngular uses components that are directives with templates. There are two kinds of […]

discussion

What is difference between AngularJS and Angular?

on May 14, 2021 🔥 0 views

Can you please tell me about AngularJS vs Angular. I have know that AngularJS is JavaScript framework but it’s confused for that use only mobile app or web app. please give clarification about both differences.

discussion

Angular v12 Is Now Released And Available

on May 13, 2021 🔥 6745 views

Angular team has announced that the Angular v12 Is Now Released And Available. Below mention are the changes you will find in a newer version of angular. Angular v12: Ivy Everywhere Angular v12 has finally deprecated the View Engine. The community has been working over recent releases towards the goal of converging the Angular ecosystem […]

news
1 2 3 10