Untitled
unknown
plain_text
4 years ago
1.4 kB
4
Indexable
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
//Define your variables done,todos,newToDo,newToDoObj,error
//Define your constructor here with todos as [] ,newToDo as '' and error as false
//Define your addMore function here
//Define your clearAll function here
newToDo: string;
todos: ITodo[] = [];
error: boolean;
constructor(){
this.error = false;
this.newToDo = '';
this.todos = [];
}
addMore(){
this.todos.push({ desc: this.newToDo, done: false});
}
clearAll(){
this.todos = [];
}
}
interface ITodo{
done?: boolean;
desc: string;
}Editor is loading...