Klausurvorbeitung

Ich benutze gerne Typora:

Typora Screenshot

Markdown

1. punkt
4. punkt
1. noch mal ein Punkt
7. noch ein Punkt
[Maskierung](Verweis/url)
[Schulwebseite](https://gcm.schule)
![Kommentar](Verweis/url)

das ist ein Zitat von Lorenzo

HTML

CSS

PHP

$foo = "2" == 2; // $foo ist True
$foo = "2" === 2; // $foo ist False, weil int != str
$foo = 2 === 2; // $foo ist True, weil 2 = 2 und int = int
$foo = "3" == 2; // $foo ist False, weil 3 != 2