From 41c8550dcc9e4dde95d92a5172a44996ddd3fa08 Mon Sep 17 00:00:00 2001 From: Ian Rashkin Date: Tue, 31 Dec 2019 16:03:03 -0500 Subject: [PATCH] Fix camelCase def in Javascript md --- JavaScript Name and Coding Conventions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/JavaScript Name and Coding Conventions.md b/JavaScript Name and Coding Conventions.md index 473fa2e..9731721 100644 --- a/JavaScript Name and Coding Conventions.md +++ b/JavaScript Name and Coding Conventions.md @@ -3,10 +3,10 @@ | 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 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 | +| 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 | | 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: