Created
June 10, 2020 05:52
-
-
Save gpDA/a5733f2d90e79fc70e2ddb68af4275b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // bad | |
| var visible = true; | |
| // good | |
| var isVisible = true; | |
| // bad | |
| var equal = false; | |
| // good | |
| var areEqual = false; | |
| // bad | |
| var encryption = true; | |
| // good | |
| var hasEncryption = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment