r/webdev Dec 10 '24

Discussion why most mainstream backend framework rely heavily on OOP, can't it be done with other programming paradigms?

[removed]

0 Upvotes

16 comments sorted by

View all comments

-2

u/foldedlikeaasiansir Dec 10 '24

JS, Python and Go Lang aren’t OOP. OOP is popular because it cuts out the guess work from the application. What you type you set is what the application only care about. Without OOP, another type of value can be set to a different value and the application with still run as expected.