Thursday, 27 December 2018

1) Angular : App Component Ts






import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-root',
template: `
<h1>{{ title }}</h1>
`
})
export class AppComponent implements OnInit {
title: string;
constructor() { }

ngOnInit() {
// We call a service that gets us the data
this.title = 'Hello World';
}
}

debug VISUAL STUDIO CODE Error Fetch Extensions

 Press Windows + S , search for "Environment Variables" , and select: 👉 "Edit the system environment variables" Click...