Functional, Object-Oriented, and Procedural Programming

added by JavaScript Kicks
7/26/2019 9:38:36 AM

1195 Views

Procedural Programming is the use of code in a step-wise procedure to develop applications. For example, to develop a simple Bank Account App procedurally: Creating an account for an individual (account) Getting an account to deposit or withdraw funds (getAccount, deposit, withdraw) Transferring funds between two different accounts (transfer) Recording all changes that occur with all accounts (accounts) Object Oriented Programming (OOP) is the use of self-contained code ( objects) to develop applications.


0 comments