Automate it when it matters

<p class="wp-block-paragraph">Back to 2017, <a href="https://starsellersword.com/" data-type="link" data-id="https://starsellersword.com/" target="_blank" rel="noopener">Starsellersworld</a> want to develop a new tool for people working in the seller’s store and dealing with shipments directed to customers.</p> <p class="wp-block-paragraph">One of the key work behind every online sellers is to pack and ship the package to the customer, as soon as the order […]

Read More…

How to define Higher Order Function with elegance

<p class="wp-block-paragraph">I need some moment to fully understand this:</p> <pre class="wp-block-preformatted">const compose = ( …fns ) => fns.reduce( ( f, g ) => ( …args ) => f( g( …args ) ) ); </pre> <p class="wp-block-paragraph">reduce method is trickly: when initialValue is not given, the first element of the array is taken as first argument […]

Read More…