fix: replace h tags (#40750)

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
This commit is contained in:
Nicholas Carrigan (he/him)
2021-01-21 00:11:46 -08:00
committed by GitHub
parent 83e3d93953
commit 062b1cd424
7 changed files with 9 additions and 19 deletions

View File

@ -13,7 +13,7 @@ In JavaScript all variables and function names are case sensitive. This means th
`MYVAR` is not the same as `MyVar` nor `myvar`. It is possible to have multiple distinct variables with the same name but different casing. It is strongly recommended that for the sake of clarity, you *do not* use this language feature.
<h4>Best Practice</h4>
**Best Practice**
Write variable names in JavaScript in <dfn>camelCase</dfn>. In <dfn>camelCase</dfn>, multi-word variable names have the first word in lowercase and the first letter of each subsequent word is capitalized.