I like the tricks :) – Kasia
Prefer enums instead of booleans to make code descriptive and extendable.
order.isDoing = true
type Status = 'todo' | 'doing' | 'done' order.status = 'doing'
Crafted with 💛 by Riccardo