What is Angular Expression ?
Last Updated :
06 Nov, 2023
Angular is a great, reusable UI (User Interface) library for developers that help in building attractive, and steady web pages and web application. In this article, we will learn about Angular expression.
Angular Expression
An Angular Expression is a code snippet that can be simple or complex JavaScript-like code, like, the variable references, function calls, operators, and filters, etc., written within double curly braces {{ }} in order to evaluate & display dynamic values or perform calculations in the template.
Different Use Cases of Angular Expressions
Angular expressions are commonly used for various purposes, which are described below:
- Displaying Data: Angular expressions are extremely useful for displaying data obtained from variables or properties within templates.
- Performing Calculations: Expressions allow us to perform calculations and display the results dynamically.
- Conditional Rendering: Angular expressions can be used with directives like ng-if to conditionally render elements based on data conditions.
- Filtering Data: We can use Angular filters in expressions to format and filter data before displaying it.
- Event Handling: It can be used to handle user interactions and trigger actions in response to events.
Syntax
In the below syntax, the msg property is bound to the <p> element and its value will be displayed.
// app.component.html
<p> {{ mymsg }} </p>
// app.component.ts
export class AppComponent {
mymsg = 'Hello, Geek!';
}
Approach
There are different approaches to implementing the Angular Expression, among which the most commonly used approach are:
- By Interpolation
- By creating the Custom Directives
We'll explore both the approaches & understand their basic implementation through the examples.
By Interpolation
This is the most common and used method to use angular expression. In this, we use the {{ }} brackets to enclose the expressions within it. Interpolation is a way to transfer the data from a TypeScript code to an HTML template (view), i.e. it is a method by which we can put an expression in between some text and get the value of that expression.
Example: The below example demonstrates the basic usage of Expressions in the Angular application.
JavaScript
// app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<h1>Welcome to {{ appName }}</h1>`,
})
export class AppComponent {
appName = 'GeeksforGeeks';
}
JavaScript
// app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule }
from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
// Add your component to the declarations array
declarations: [AppComponent],
imports: [BrowserModule],
// Set your component as the root component
bootstrap: [AppComponent],
})
export class AppModule { }
HTML
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GFG App</title>
</head>
<body>
<!-- Include the root component here -->
<app-root></app-root>
</body>
</html>