Published in Geek Culture·PinnedReact/Redux Interview Questions with Answers 🚀I prepared list of react and redux interview question, Few question I faced in my journey and few of the question I have referred from Google itself 😂 React Interview Questions 🚀 Q.1. How to create components in React? Q.2. What are the difference between a class component and functional component? Q.3. What is…Front End Development18 min read
Published in Geek Culture·May 17Pure vs Impure FunctionsThese are the two terms that you always hear in a programming language called Pure and Impure functions. You know Pure Function is always dependent on arguments and there should not be any side effects. What hack is Side Effects? ☠️ When you try to use external code in the function or if you are mutating…Java Script3 min read
Published in Weekly Webtips·Apr 2311 Productive Websites for Web DevelopersFound amazing resources which will save you tons of time as a web developer and increase your productivity👇 1. Unminify This tool will unminify, reformat, and reindent ugly JavaScript, CSS, HTML, XML, and JSON code, making it readable again.Front End Development3 min read
Published in Level Up Coding·Apr 2Getting Started with Web 3.0 for Frontend EngineersEvery new advent of the web is at first baffling(impossible to understand). Web 3.0 is the third generation of internet services for websites and applications that will focus on using a machine-based understanding of data to provide a data-driven and Semantic Web. Web 1️.0️ Web 1.0 is a read-only web 📖 In…Front End Development5 min read
Mar 24Centralization vs DecentralizationYou have heard about decentralization a lot in Web 3.0 topic. Let’s understand centralization and decentralization in deep 👇 Decentralization is a core tenet of Web 3.0 Centralization 🔥Front End Development2 min read
Mar 18Amazing Resources for Web DevelopersFound amazing resources which will save you tons of time as a web developer👇 1. 10015 Tools It includes text tools, image tools, CSS tools, coding tools (e.g. minifiers), color tools, social media tools, and a few others under a miscellaneous category.Front End Development3 min read
Published in Geek Culture·Mar 16JavaScript ProxyA JavaScript Proxy is an object that wraps another object and intercepts the fundamental operations of the target object. syntax: let proxy = new Proxy(target, handler); target – is an object to wrap, can be anything, including functions. handler – proxy configuration: an object with “traps”, methods that intercept operations…Front End Development3 min read
Mar 9Git ReflogBy the name git reflog — Manages reflog information. It keeps tracks of everything which you do locally. Let’s understand the git reflog and git log 👀 git reflog keep tracks of everything you have done locally. example: keep track of commit history, if you have done hard reset, it keeps track of git commit — amend as well …Github3 min read
Published in Geek Culture·Dec 29, 2021Stop using Array.map() everywhere 🥵Most of the time I used to see the snippet like this 👇 const fruits = ["apple", "orange", "cherry"]; let text = ""; document.getElementById("main").innerHTML = text; fruits.map(i => text += i ); In the above snippet, we are adding fruits text to the DOM in main ID. It seems there is…Front End Development2 min read
Published in Level Up Coding·Dec 24, 2021Free Ebook & Courses for Frontend DevsAs we know, online courses or ebooks are the best resources for learning Frontend Engineering. Sometimes it’s really hard to buy ebooks or courses. Like when I was a student I was mostly trying to figure out where I can find the free resources for learning HTML, CSS, JavaScript. There…Front End Development4 min read