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
+23
View File
@@ -0,0 +1,23 @@
# String Literals
String literals are text values written directly in code.
## Examples
```ts
const a = 'year';
const b = "month";
const c = '';
```
`''` is an empty string.
## Typical Uses
- Labels and constants.
- Comparisons.
- Fallback values.
## Good Practice
Keep quote style consistent with project conventions.