This article is part of a series where we explore functional and reactive programming both in general terms and applied to JavaScript.
In this fi...
For further actions, you may consider blocking this person and/or reporting abuse
I see something like this written in almost every article on functional programming:
"But, as you can see, the imperative code is verbose and not immediately clear. On the other hand, the declarative approach is readable and explicit, because it focuses on what we want to obtain."
Authors seem to treat it as objective fact that the declarative approach is clearer, and yet often I find myself able to be certain of what the code does (particularly with edge cases) when reading the imperative code, not the declarative code. Anyone with a familiarity of any programming language would be able to understand the imperative example, but I don't feel the same is necessarily true of the declarative example.
Is it just me, or are people who promote functional programming blinded by their experience and familiarity with that paradigm?
This is not to say one style is better than another, I just find such statements really jarring to read because it's not the case for me.
Your issue is about the concept of "abstraction", not really about paradigms. Indeed also OOP hides imperative code.
Let's put it in another way: the imperative approach exposes you to the implementation of some task. But it doesn't communicate clearly and immediately what's the purpose of your code.
When you find yourself in front of 1000+ lines of imperative code (maybe written by someone else) you'll only see a long block/blob of low-level code (until you decode it). This leads often to lose sight of the "why" or "what" the code is trying to accomplish.
Sometimes you don't even need to know the actual implementation. Often because is crystal clear what the function is supposed to do, or because a simple analysis of inputs/outputs will clarify the operation performed.
In any case, functions/classes/modules etc. are written by someone, so when needed you can dive into the actual implementation. Same for built-in functions: the specs are clear about what they do and how.
So the point here is: the declarative style/code abstract away from low-level stuff (zoom out) so you can understand what's the goal/direction of the code in front of you. But you can always dig into the actual implementation if you need/want.
Good point, though!
Of course. Every programming paradigm is clear to the person who internalized it. Same as with natural languages -- yes, there are a few "universal idioms" common to all (or most), but almost everything is based on familiarity, not on some high clarity independent of experience.
Just to show how easy it is to make this mistake: you make it too. :-P Look:
Of course this is not true. There are many functional programming languages, and more and more people are starting with them, since more and more schools are realizing the benefits of FP (again, those benefits are not some lofty clarity ideals, but practical things like easier piecewise testing, and thus easier grading;). But I completely understand that it seems this way to you, precisely because your first experience is with imperative programming.
Agreed. Imperative was clearer to me in these examples. I use a combo of programming paradigms personally. Depends on the the situation.
The FP vs. OOP dichotomy is silly. They are and can be compatible with each other. In general, I take advice that suggests to use X in every situation with a grain of salt.
Assuming a little bit of JS knowledge the declarative approach is absolutely clear.
Of course to appreciate the declarative style you have to know the language or the used functions.
Anyway, as I said in the article,there's no best choice. Any situation needs the right approach.
I do this all the time but problem is that by time I get lot of this helpers scatter around the code base
Hi there, great article!
Just to be sure everyone is on the same page for the
pipe
function, I rewrote it using thefunction
keyword and afor...of
loop (and human-readable variable names).This is just an imperative way of writing what Andrea wrote with the
reduce
method. Same thing, different way of writing it. Maybe a little more understandable for newcomers with the imperative way. I hope that helped!Seems kind of ironic that someone would need to write code in an imperative way to make it more readable in an article that claims declarative programming is easier to read. 😂🤣
You are correct! I think that when beginners start to see things like
map
orreduce
orfindIndex
they get lost quicker than when using this way of writing (which uses concepts that are present in other imperative languages). Maybe a little more approachable to begin the smooth transition to the Array methods.Thanks Amin for the "human-readable" version of pipe! 😁
The article supposes some degree of familiarity with JS. Maybe I need to mention some prerequisites in the intro part.
You are very welcome friend. I also understand that this topic could last for hours of reading but I think we can agree that we agree. 😂
Anyway great article again I really enjoy reading this through. Keep up the good work!
Thank you.
This is not entirely correct.
In Javascript primitives and objects are always called by value, and the value that is passed is a reference. This means that the reference to an Object is copied and passed as a value.
This is great article but if you care about performance,
Using this approach is much more appropriate because you only loop once
and not creating new reference for every method you use.
Unlike this one, although much more readable, but every function creates its own loop.
Correct me if I'm wrong here 😁.
It's just that I prefer performance rather than readability.
Thanks for this comment 😁, but I totally disagree with you.
Thinking about performance before profiling you code is called "premature optimization" which is a known to be a bad thing in software development, also because without appropriate tests, you don't even know where the "bottlenecks" really are.
Furthermore, 90% of the time you don't have performance problems nor this type of operations leads to performance issues (unless you work with long long long arrays). Also, often performance problems are present due to bad software architecture.
Finally, if you want really performant code maybe you need to consider other solutions than JS 😅
Thanks. I'd look into that.
Great article!
I noticed some typo in the article. You use 'sub' as an argument name but in the function body you use 'user' instead.
Thanks! Fixed!
Great Artikel
Thank you!
Cannot agree more."Pipe", "Compose" utils are mind blowing.