Hello everyone, I have the following code written in Angular 10.I came across this question in https://www.adaface.com/blog/angular-interview-questions/ import { Component, Input } from ‘@angular/core’; @Component({ selector: ‘app-list’, template: ` <ul> <li *ngFor=”let item of items”> ____________ </li> […]
Hello everyone, I have the following code written in Angular 10.I came across this questions in https://www.adaface.com/blog/angular-interview-questions/. Start your code here import { Component, OnInit } from ‘@angular/core’; @Component({ selector: ‘app-root’, template: ` <h1>{{ title }}</h1> `, styles: [] }) export class AppComponent implements OnInit { title = ‘Welcome to Angular 10!’; ngOnInit() { console.log(‘Compiling […]