DEV Community

Discussion on: Imperative vs Declarative Programming

Collapse
 
itsjzt profile image
Saurabh Sharma • Edited

A while ago I wrote about what is declarative programming

Person.walk() is declarative
walk(Person) {
// code to move the person in your ui toolkit
} is imperative