Skip to content

Instantly share code, notes, and snippets.

View AlCalzone's full-sized avatar
🎯
Z-Wave + Node.js = ❤

AlCalzone

🎯
Z-Wave + Node.js = ❤
View GitHub Profile
@AlCalzone
AlCalzone / machine.js
Created June 26, 2020 12:32
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@AlCalzone
AlCalzone / how-to-async.md
Last active February 7, 2023 10:38
JavaScript: How to Async? (german)

How to? - Asynchroner Code

Kapitel 1: Synchroner Code

Ausgangslage: Synchroner Code. Einfach zu lesen, klarer Programmablauf:

const ergebnis1 = synchroneFunktion1();
const ergebnis2 = synchroneFunktion2();
tueWasMitErgebnis(ergebnis1, ergebnis2);