TypeError: Promise.then is not a function in JavaScript
Fixing “TypeError: Promise.then is not a function” error in JavaScript
Fixing “TypeError: Promise.then is not a function” error in JavaScript
We have a parent component called <Dad/> And let’s say its child is <Son/> Now we know if a function callDad() is defined in <Dad/>, it’s child can easily call it if we pass it to the child in props e.g. <Son func={callDad} However, what about vice-versa? Is it even possible to call a function … Read more
As a frontend developer, we get Data from API Responses all the times. And we render it on UI. However, sometimes we might not want to display this data on UI. Instead we want it in a PDF that can be downloaded easily. We will use jsPDF library to achieve this. In some situations, we … Read more
as a newbie in programming, we often see git warning “”LF will be replaced by CRLF” in Windows. Know what it does mean.
FieldArray component of Formik helps in handling list of form fields.