Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
narcolepsy and alcoholism :flag: (hj@shigusegubu.club)'s status on Wednesday, 25-Oct-2023 02:33:07 JSTnarcolepsy and alcoholism :flag: @Moon @lanodan the joke is that even if it was c > ++c it would still be false because c is incrementing, not decrementing
equals though is a different story.
at least in JS:
a === ++a
false
a === a++
true