init at work

This commit is contained in:
Mathias Schneider
2026-03-27 12:58:01 +01:00
parent 352c352056
commit 8d40597732
60 changed files with 16498 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Semicolons in TypeScript
Semicolons terminate statements.
## Example
```ts
const x = 1;
const y = 2;
const z = x + y;
```
JavaScript has automatic semicolon insertion, but many teams still use explicit semicolons for consistency and fewer edge-case surprises.
## Recommendation
Follow the style already used in your repository.