angular example code
Example 1: angular coding examples
<div *ngFor="let anyNameYouWant of [(observable$ | async)]">
{{ anyNameYouWant }}
</div>
Example 2: angular coding examples
<!-- ./components/example/example.component.html -->
<h1>{{ username }}</h1>
<span>Change Name: </span><input [(ngModel)]="username">
<h3>Posts: {{ totalPosts }}</h3>
<ul>
<hr/>
<div *ngFor="let post of allPosts; let i=index">
<button (click)="deletePost(i)">DELETE</button>
<h6>{{ post.title }}</h6>
<p>{{ post.body }}</p>
<hr/>
</div>
</ul>
Example 3: angular coding examples
@Component({
templateUrl: './my.component.html'
})
export class MyComponent {
handler(event):void {
}
}
Example 4: angular coding examples
@Component({
templateUrl: './example.component.html'
})
export class ExampleComponent {
timestamp:string = ‘2018-05-24T19:38:11.103Z’;
}