Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created March 23, 2018 09:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/5dae77daa4edff62d56be6c1faa4f89b to your computer and use it in GitHub Desktop.
Save debugmodedotnet/5dae77daa4edff62d56be6c1faa4f89b to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-root',
template: `{{productName | uppercase}} = {{productPrice | currency}}`
})
export class AppComponent {
productName = 'Cricket Bat';
productPrice = 990;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment