No. | Questions |
---|---|
1 | What is npm? |
2 | What is Cordova? |
3 | What are the features of Cordova? |
4 | Explain what are the limitations of Cordova? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Pipe Usage in HTML --> | |
<input placeholder="keyword..." [(ngModel)]="search"/> | |
<div *ngFor="let item of items | searchPipe:'name':search "> | |
{{item.name}} | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, OnInit, OnDestroy } from '@angular/core'; | |
import { Subscription } from 'rxjs/Subscription'; | |
import { CommonService } from './common.service'; | |
@Component({ | |
selector : 'child', | |
templateUrl : './child.html' | |
}) | |
export class ChildComponent implements OnInit, OnDestroy { |