Fix camelCase def in Javascript md

This commit is contained in:
Ian Rashkin
2019-12-31 16:03:03 -05:00
parent d397e6517d
commit 41c8550dcc
+3 -3
View File
@@ -3,10 +3,10 @@
| Object Name | Notation | Length | Plural | Prefix | Suffix | Abbreviation | Char Mask | Underscores | | Object Name | Notation | Length | Plural | Prefix | Suffix | Abbreviation | Char Mask | Underscores |
|--------------------|------------|--------|--------|--------|--------|--------------|------------|-------------| |--------------------|------------|--------|--------|--------|--------|--------------|------------|-------------|
| Function name | PascalCase | 50 | Yes | No | Yes | Yes | [A-z][0-9] | No | | Function name | PascalCase | 50 | Yes | No | Yes | Yes | [A-z][0-9] | No |
| Function arguments | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | | Function arguments | camelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No |
| Local variables | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | | Local variables | camelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No |
| Constants name | PascalCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | | Constants name | PascalCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No |
| Field name | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | | Field name | camelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No |
## Coding conventions are style guidelines for programming. They typically cover: ## Coding conventions are style guidelines for programming. They typically cover: