angular property to work with $ code example
Example 1: angular property binding
@Component({
templateUrl: 'component.html',
selector: 'app-component',
})
export class Component {
name = 'Peter';
updateName() {
this.name = 'John';
}
}
Example 2: use property in angular 8
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = "Data binding using Property Binding";
imgUrl="https://static.javatpoint.com/tutorial/angular7/images/angular-7-logo.png";
}
<h2>{{ title }}</h2> <!-- String Interpolation -->
<img [src]="imgUrl" /> <!-- Property Binding -->