Operators Function Example Equal to(=) Assign a value to the variable x = 3 Addition Assignment Operator (+=) Subtracts the value and then assign it to the variable x += 3 (x = x + 3) Subtraction Assignment Operator (-=) Subtract the value and then assign it to the variable x ...