We all love shortcuts in programming like the ones we are about to cover. The increment operator ++
and the decrement operator --
is the fastest way to increase or decrease the value of a variable by 1 respectively, in languages like JavaScript, Java, C++, etc. Less typing, Happy us :).
As I continue my learning of Data Structures, I found Java being a little similar to JavaScript based on the documentations I have read so far. So I started learning Java. Here is a summary of what I have learned so far.