[TIL] HAVE i EVER LEARNED
Process-Oriented Thinking
# declarative programming
- focus on what to achieve, not how to do it.
- the system takes care of the details to make it happen.
# imperative programming
- clearly define ✌🏻how✌🏻 to achieve the goal.
- specify the steps for processing data step by step.
- control the order and flow of operations directly.
💡 mindset shift
- shift focus from just thinking about
the outcome to carefully designing the step-by-step process to reach the goal.