Angular 19 tutorial in Hindi #3 Hello World | Make first change

Make First HTML Change

Make First JS change

Make new properties (Variables)

Interview Questions

<h1>Hello, Angular 19</h1>
<h2>{{title}}</h2>
<h3>{{name}}</h3>


import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';

@Component({
selector: 'app-root',
imports: [RouterOutlet],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
export class AppComponent {
title = 'Code Step By Step';
name = "Anil Sidhu"

hello() {
let x = 10;
const y = 20;
var data = 30
}
}