SKShobhit Kuruvillainshobhit.hashnode.dev·Sep 17, 2021 · 13 min readHow to create Flipkart like Search Bar in ReactI was recently building an E-commerce app and making the search bar with a dropdown for suggestions was interesting. I tried to imitate the Flipkart Search bar in React and learned a lot along the way. This article will be focused on how to make the...02RS
SKShobhit Kuruvillainshobhit.hashnode.dev·Sep 15, 2021 · 4 min readAll about Hoisting in JavaScriptHoisting is a very interesting mechanism in JavaScript that determines when the variable or function can be accessed. You must have noticed that we can access and use functions even before their declaration. showMessage(); // "Hello everyone!" funct...00