From 7d567b506940ab8a9d258f49f44969f079cfaff5 Mon Sep 17 00:00:00 2001 From: Philippe Torrel Date: Mon, 29 Jun 2026 12:06:46 +0200 Subject: [PATCH] --- 02_advanced/linksammlung.md | 12 +++ 02_advanced/unterricht/tag11/01_objekte.html | 93 ++++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 02_advanced/unterricht/tag11/01_objekte.html diff --git a/02_advanced/linksammlung.md b/02_advanced/linksammlung.md index b04ed94..6caa6e4 100644 --- a/02_advanced/linksammlung.md +++ b/02_advanced/linksammlung.md @@ -25,6 +25,11 @@ ## Tools/ Software - [Microsoft Powertoys](https://learn.microsoft.com/de-de/windows/powertoys/) +- [Tipp10](https://online.tipp10.com/de/) + +## JS Tuts + +- [JS CheatSheet](https://dev.to/devsmitra/28-javascript-array-hacks-a-cheat-sheet-for-developer-5769) ## CSS/SCSS Tuts @@ -32,3 +37,10 @@ - [CSS Tricks - Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) - [CSS Flexboxfroggy](https://flexboxfroggy.com/#de) - [CSS Gridgarden](https://cssgridgarden.com/#de) + +## JS Styleguide + +- [AirBnb Styleguide](https://github.com/airbnb/javascript) +- [Google](https://google.github.io/styleguide/jsguide.html) +- [jQuery Styleguide](https://contribute.jquery.org/style-guide/js/) +- [MDN (ES6) Styleguide](https://developer.mozilla.org/en-US/docs/MDN/Writing_guidelines/Writing_style_guide/Code_style_guide/JavaScript) diff --git a/02_advanced/unterricht/tag11/01_objekte.html b/02_advanced/unterricht/tag11/01_objekte.html new file mode 100644 index 0000000..1087979 --- /dev/null +++ b/02_advanced/unterricht/tag11/01_objekte.html @@ -0,0 +1,93 @@ + + + + + + Object - object + + + +
+
+

Objekt - object

+

+ Der + Object-Typ + repräsentiert einen von JavaScript's Datentypen. Er wird verwendet, um verschiedene Schlüsselkollektionen und + komplexere Entitäten zu speichern. Objekte können mit dem Object()-Konstruktor oder der + Objekt-Initialisierer-Syntax erstellt werden. +

+
+
+
+ + +