javascript / beginner
Snippet
Displaying Data with String Interpolation
String interpolation allows you to embed dynamic values from your TypeScript class into your HTML template using double curly braces.
snippet.js
javascript
1
2
<!-- component.html --><p>Welcome, {{ userName }}!</p>
angular
Breakdown
1
{{ userName }}
The double curly braces act as a placeholder that Angular replaces with the actual value of the 'userName' property.