When to use typescript optional property? How is it different from declaring property as undefinedThe most important thing to understand is that “?” optional property and same property declared as required but possibly undefined mean…Feb 17, 20211Feb 17, 20211
How to set up ngrok to work with create-react-app that runs under HTTPS=true flagWhen you run a create-react-app under HTTPS=true flag then whenever you try to reach this app under https:// it shows that connection is…Jan 24, 2021Jan 24, 2021
What pattern to use instead of Promise.all()Promise.all() allows us to run code in parallel but we can’t use it in some cases. Cases like when it’s really important for us to execute…Jan 24, 2021Jan 24, 2021