Skip to content

Instantly share code, notes, and snippets.

@gpDA
Created June 10, 2020 05:52
Show Gist options
  • Save gpDA/a5733f2d90e79fc70e2ddb68af4275b9 to your computer and use it in GitHub Desktop.
Save gpDA/a5733f2d90e79fc70e2ddb68af4275b9 to your computer and use it in GitHub Desktop.
// 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