Topic: JavaScript

Angular Two-Way Binding Explained

If you are learning Angular after React (or React after Angular), one topic quickly becomes important: how data moves between UI and state.

Angular is known for two-way binding. React is known for one-directional (one-way) data flow.

Both are useful, but they encourage different mental models.

This article explains Angular two-way binding in a simple way, then compares it directly with React so the difference is crystal clear.

Read More...

JSX Emmet integration for VSCode

Emmet is very useful for writing code fast. But you will have to enable JSX support for Emmnet in VSCode. The procces is very easy. First open VSCode settings.Go to Extensions > Emmet and add item javascript with valu

Read More...

I don't hate JQuery

Should I hate a library or framework ? My answer is “No”. Every library or framework is created for a reason. If that matches your needs you can use it in your projects otherwise do it on your own. Nothing to be hated he

Read More...