DEV Community

Avinashd
Avinashd

Posted on

Js in bits - 8.7(basic operators)

Learning js should be fun. It is fun if it's easy.
I tried my best in writing this, to understand it the easy way.

Increment/Decrement

We encounter these more than we can imagine while coding.

Image description

Pre/Post

Pre increments value and return it right away
Post increments value but returns the old value.

Image description

1 more example to clear the confusion

Image description

Leave y'r thoughts....

Top comments (0)