-
Notifications
You must be signed in to change notification settings - Fork 803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tip #35 Elaborate on ++ and -- #223
Comments
Seeing that post I immediately thought that, too. Knowing the difference between |
Yeah.
And
|
@megapctr Could you create a new PR with the proposed changes? We'll merge once we review it. Thanks. |
You're welcome 😉 |
Describe double plus/minus operators. Closes #223
@loverajoel It seems that Jekyll is doing something fishy with the GitHub pages. Is this related to the warning we receive on each merge? |
@zenopopovici @mebjas so strange, I think that maybe it's related with the Jekyll update in the last time for Github, I will back with more info. |
Sorry to bash on this tip like that, but I think we could provide more details on ++ and -- operators. Maybe add a new section about them?
For example, what's the difference between
var b = --a;
andvar b = a--;
?The text was updated successfully, but these errors were encountered: