Skip to content

Instantly share code, notes, and snippets.

@songthamtung
Last active August 3, 2019 06:20
Show Gist options
  • Save songthamtung/008ecd0897a2d82b93b4b52258d14ba2 to your computer and use it in GitHub Desktop.
Save songthamtung/008ecd0897a2d82b93b4b52258d14ba2 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
author = getAuthor();
title = `my-app by ${this.author}`;
}
function getAuthor() {
const obj = { name: 'songthamtung' };
return obj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment