Untitled
unknown
plain_text
4 years ago
931 B
10
Indexable
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent {
//Define your name object with first and last properties
firstName = 'John';
lastName = 'Smith';
}
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent {
//Define your name object with first and last properties
name = {
first: 'John',
last: 'Smith'
}
}Editor is loading...