Declarative Programming

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2021 Jan 17 15:5
Editor
Edited
Edited
2025 Dec 16 18:50
Refs
Refs
Rather than emphasizing how to do something, declarative programming focuses on what needs to be done - you describe what should be accomplished and the program handles the specific procedures. The main advantages are that it's easy to read and write. However, a disadvantage is that it can be difficult to control all the underlying flow, making it less suitable for system-level applications like embedded systems.
One tragedy of programming is that declarations must be made in the opposite order of execution, the reverse of dependency. And this problem is not solved by hoisting.
Code Readability
Declarative Programming Method
 
 
 
 
 
 
 

Recommendations