Assignment and Compound Assignment Operator
Get introduced to the functionality of the assignment and the compound assignment operator.
We'll cover the following...
Assignment operator
The assignment operator takes the value on its right-hand side and assigns it to the operand on the left-hand side.
In C++, we have only one assignment operator.
...