Assignment operators are used to assign value to variables. The function on the left side of the assignment operator is the variable on the right and right side of the assignment operator.
"=": This is a straightforward assignment operator. This operator is used to share the value to the right of the variable on the left.
"+ =": This operator is a combination of '+' and '=' operators. The operator first adds the current value of the left variable to the right value and then gives the effect to the left variable.
"- =" This operator is a combination of '-' and '=' operators. The operator starts by subtracting the current value of the left variable from the correct weight and assigning the result to the left variable.
"* =" This operator is a combination of '*' and '=' operators. The operator first duplicates the current value of the left variable to the right value and then assigns the result to the left variable.
"/ =" This operator is a combination of '/' and '=' operators. The operator first divides the current variable value on the left with the right and then assigns the result to the left variable.
|