Merge pull request #27 from yusufpapurcu/patch-1

Changed Named convention's bad example
This commit is contained in:
Artem Zakharchenko 2021-01-22 10:18:25 +01:00 committed by GitHub
commit 4a991e6ce8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ Pick **one** naming convention and follow it. It may be `camelCase`, or `snake_c
```js
/* Bad */
const pages_count = 5
const page_count = 5
const shouldUpdate = true
/* Good */