I try to use functional react components where I can, but something I've found conceptually confusing for a while now is passing a function to a component. This is confusion has been particularly apparent when using an external React library and I've been tasked to enhance a default component property with some additional feature which … Continue reading Passing Functions to Components in ReactJS and passing new parameters
Tag: Javascript
How do javascript Map objects work?
Today I've been struggling with manipulating a dataset in a tool I've been working on that makes use of javascript Map object as kindly introduced into the code base by one of my colleagues at work. I have very little experience using Maps as I generally get by my data manipulation requirements using arrays combined … Continue reading How do javascript Map objects work?