Code-Fellows reading notes.
View the Project on GitHub bkasprzyk19/reading-notes
CTRL + / ‘comment out code’
operand1 operator operand2
For example, x++ or ++x.
x++
++x
<==Back