Typescript Naming Standards: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

4 July 2025

3 July 2025

  • curprev 23:5923:59, 3 July 2025 Iwiseman talk contribs 1,553 bytes +1,553 Created page with "=Introduction= I guess I run with whatever the linter tells me but wanted to capture '''a way''' here =Naming Standards= Here we go {| class="wikitable" ! Type !! Convention !! Example |- | Variables || camelCase || <code>const userName = "John";</code> |- | Functions || camelCase || <code>function calculateTotal() { ... }</code> |- | Parameters || camelCase || <code>function getUser(userId: string) { ... }</code> |- | Classes || PascalCase || <code>class UserAccount {..."