DEV Community

Discussion on: Data Bindings In Angular

Collapse
 
pbouillon profile image
Pierre Bouillon

Hey, nice article, thanks for sharing!

Just some tips about the DEV editor, you can create series to group all articles related to the same subject, it could help you to keep your article related to Angular2 tutorials together!

On a side note, you may also want to highlight your TypeScript code with Markdown, you just have to specify the language when writing it, like this:

syntax

and it will be displayed as:

export class AppComponent {
  eg = Hello;
}
<input type=text [(ngModel)]=eg />
<h2>{{name}}</h2>
Enter fullscreen mode Exit fullscreen mode
Collapse
 
haimantika profile image
haimantika mitra

Oh how nice! Thanks for sharing with me the series thing (I was looking for something like this).

Ah yes! I recently learnt about the language trick! Doing it right away!