This repository was archived by the owner on Jul 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcase-styles.html
More file actions
38 lines (38 loc) · 2.12 KB
/
case-styles.html
File metadata and controls
38 lines (38 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"><meta http-equiv="X-UA-Compatible" content="ie=edge"><meta name="description" content="Case styles are how one names variables, class names, etc. in code. Normally pertains to capitalization, spaces, and special characters."><!-- Bing --><meta name="msvalidate.01" content="45CBBE1BD8265A2217DFDA630EB8F84A" /><title>Tiny Brain Fans - Case Styles</title><link rel="stylesheet" href="tinystyle.css"></head><body>
<main id="main"><article id="content"><h1 id="title">Case Styles</h1><p>Case styles are how one names variables, class names, etc. in code. Normally pertains to capitalization, spaces, and special characters.</p>
<h2>Types</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Capitalization</th>
<th>Spaces</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>Camel Case</td>
<td>lowercase first letter with all following words capitalized</td>
<td>none</td>
<td><code>thisIDIs64Bit</code></td>
</tr>
<tr>
<td>Kebab Case</td>
<td>all words lowercase</td>
<td>hyphens</td>
<td><code>this-id-is-64-bit</code></td>
</tr>
<tr>
<td>Pascal Case</td>
<td>all words capitalized</td>
<td>none</td>
<td><code>ThisIDIs64Bit</code></td>
</tr>
<tr>
<td>Snake Case</td>
<td>all words lowercase, except proper nouns and acronyms</td>
<td>underscore</td>
<td><code>this_ID_is_64_bit</code></td>
</tr>
</tbody></table><section id="backlinks"><details><summary>Backlinks</summary><ul><li><a href="eslint.html">ESLint</a></li></ul></details></section><p class="last-modified">Last modified: 202206101419</p></article></main><footer><nav><a href="index.html">Sitemap</a></nav><div class="social"><p>Built using <a href="http://codeberg.org/milofultz/swiki" target="_blank" rel="noopener noreferrer">{{SWIKI}}</a></p><p><a href="http://codeberg.org/milofultz/" target="_blank" rel="noopener noreferrer">Codeberg</a></p><p><a href="http://milofultz.com/" target="_blank" rel="noopener noreferrer">milofultz.com</a></p><p><a href="https://merveilles.town/@milofultz" target="_blank" rel="me noopener noreferrer">Mastodon</a></p></div></footer></body></html>