Task - One-way Binding - Interpolation #86
akash-coded
started this conversation in
Tasks
Replies: 5 comments
-
greet.component.tsimport { Component } from '@angular/core';
@Component({
selector: 'app-greet',
templateUrl: './greet.component.html',
styleUrls: ['./greet.component.css']
})
export class GreetComponent {
firstName:string="Abhishek";
lastName:string="Ghute";
}greet.component.html<h3>Welcome, {{firstName+" "+lastName}}!</h3> |
Beta Was this translation helpful? Give feedback.
0 replies
-
greet.component.tsimport { Component } from '@angular/core';
@Component({
selector: 'app-greet',
templateUrl: './greet.component.html',
styleUrls: ['./greet.component.css']
})
export class GreetComponent {
firstName: string = 'Twarit'
lastName: string = 'Soni'
}greet.component.html<div class="container bg-light text-center mt-3">
<div class="jumbotron">
<h1>Welcome,</h1>
<h1>{{firstName + " " + lastName}} !</h1>
</div>
</div> |
Beta Was this translation helpful? Give feedback.
0 replies
-
greet.component.ts//app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
firtname: string = 'Bhargavi';
lastname:string='Indukuri'
}greet.component.html<!--app.component.html-->
<h2 style="color:blueviolet;">Welcome, {{firtname}} {{lastname}} !</h2> |
Beta Was this translation helpful? Give feedback.
0 replies
-
greet.component.tsimport { Component } from '@angular/core';
@Component({
selector: 'app-greet',
templateUrl: './greet.component.html',
styleUrls: ['./greet.component.css']
})
export class GreetComponent {
firstname : string="Heena"
lastname : string="Hafeez";
}greet.component.html<h1>Welcome,{{firstname}} {{lastname}}!!</h1>app.component.html<app-greet></app-greet> |
Beta Was this translation helpful? Give feedback.
0 replies
-
**greet.component.html**
<h3>Welcome, {{ firstname+" "+lastname}}!!</h3>
**greet.component.html**
import { Component } from '@angular/core';
@Component({
selector: 'app-greet',
templateUrl: './greet.component.html',
styleUrls: ['./greet.component.css']
})
export class greetComponent {
firstname : string="Ananth"
lastname : string="Roy";
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Create an Angular application that has a
greetcomponent.The
greetcomponent is to display a welcome message with the user's full name.The
greetcomponent class contains two data members:firstNameandlastName. You can assign values to both in the component model, e.g.,firstName = 'Akash'andlastName = 'Das'.In the
greetcomponent template, you have to read thefirstNameandlastNamefrom the component class and display the full name of the user along with a greeting message as follows:BONUS: You can stylize the greeting message.
Beta Was this translation helpful? Give feedback.
All reactions