VKVic Kalchevindestructured.xyz·Apr 10, 2022 · 7 min readPizza & Iterators: What The Best Have in CommonThe problem was quite simple. Yet, it took me twice the time I thought it would. I tried it from different angles, explored various approaches and even combined them into a solution (mistakenly thinking this would somehow work). I thought I might be ...00
VKVic Kalchevindestructured.xyz·Feb 22, 2022 · 3 min readCompose Function in JavaScript:You know how regular functions work: they take parameters and apply some action to them to produce a result: function calculateTax(price, taxRate) { return price*taxRate; } console.log(calculateTax(10, 0.3); //result: 3; The function above has t...00