We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb00830 commit e951356Copy full SHA for e951356
JavaScript Name and Coding Conventions
@@ -8,7 +8,7 @@
8
| Constants name | PascalCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No |
9
| Field name | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No |
10
11
-***
+
12
Coding conventions are style guidelines for programming. They typically cover:
13
14
1. Naming and declaration rules for variables and functions.
@@ -32,9 +32,11 @@ Always use the same naming convention for all your code. For example:
32
33
Do use PascalCasing for function names:
34
35
+```javascript
36
function HelloWorld()
37
{
38
}
39
+```
40
41
Do use camelCasing for function arguments and local variables:
42
0 commit comments