diff --git a/guide/english/java/basic-operations/index.md b/guide/english/java/basic-operations/index.md index 41ca98bf2d..8d586e49cf 100644 --- a/guide/english/java/basic-operations/index.md +++ b/guide/english/java/basic-operations/index.md @@ -22,6 +22,10 @@ While most of the operations are self-explanatory, the Conditional (Ternary) Ope `expression that results in boolean output ? return this value if true : return this value if false;` +The Assignment operators (`+=`, `-=`, `*=`, `/=`, `%=`, `<<=`, `>>=`, `&=`, `^=`, `|=`) are just a short form which can be extended. +Example: +(`a += b`) does the same thing as (`a = a + b`)! + Example: True Condition: