Skip to content

Instantly share code, notes, and snippets.

@ulibo-yuki
Created June 17, 2023 06:51
Show Gist options
  • Save ulibo-yuki/4550d32542900c457060b4a5d73ea4c8 to your computer and use it in GitHub Desktop.
Save ulibo-yuki/4550d32542900c457060b4a5d73ea4c8 to your computer and use it in GitHub Desktop.
演算子 意味
+= a += 1 a = a + 1
-= a -= 1 a = a - 1
*= a *= 1 a = a * 1
/= a /= 1 a = a / 1
%= a %= 1 a = a % 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment