First, I love the article! Well explained and kept simple for understanding.
I would just like to mention that it may be misleading to state that Ramba's sort option is like Array.prototype.sort. There is a difference that might be important to note, that Rambda's sort makes a COPY of the array, where Array.prototype.sort does not.
Log in to continue
We're a place where coders share, stay up-to-date and grow their careers.
First, I love the article! Well explained and kept simple for understanding.
I would just like to mention that it may be misleading to state that Ramba's
sort
option is likeArray.prototype.sort
. There is a difference that might be important to note, that Rambda'ssort
makes a COPY of the array, whereArray.prototype.sort
does not.