Please enable JavaScript to use CodeHS

CodeHS Glossary


Compound Assignment Operators Java

Allows programmers to shortcut variable assignments that include the variable being assigned a new value: x = x + y; shortcut: x += y;