Author: Aaquib Ahmed
-
Simple Explanation on Searching Algorithms with JavaScript
Our next stop in the series of βUnderstanding Data Structure and Algorithms with JavaScript πβ is Searching Algorithms with JavaScript. Searching Algorithms is one of the important fundamental functions in computer science. Searching Algorithms help to find a particular element/data which is present in the data stack or not, where the data stack may be…
-
Understanding Array, String, and Object Data Structure with JavaScript
Our first stop in our blog series on “Understanding Data Structure and algorithm with JavaScript π” is Array, String, and Object manipulation. To grasp the good hold in Data structure using JavaScript, these are the major three topics that serve as the most important basic components which build the base in learning and understanding any…
-
How to add/remove input fields dynamically with Reactjs
Building form components have never been so complicated and complex as before. In React, creating complex UI components is very easy but some components may get very tricky and challenging. One has to wrap his head around and think out of the box to get the solution which not only solves the problem but also…
-
What is Big O Notation – Space and Time Complexity
Big O Notation is one of the most important topics for a developer to understand in order to become a good programmer. Let us understand in this way that, you and your developer friend designed two different algorithms to solve a particular problem. Both algorithms are not only different in naming variables but have significantly…
-
How to record the screen to gif? (Complete Guide)
GIF has become one of the most popular ways of sharing emotions, ideas, or any reference about certain situations on most social media platforms. It is neither a video nor simple image, but you can say it is a combination of both, moreover, it is less space-consuming. As seeing the popularity, sometimes you may also…
-
What is JavaScript Event Loop?
JavaScript Event Loop is one of the most important characteristics through which you can understand the basic work process of JavaScript. It is due to the Event loop through which asynchronous operations are possible. But you may ask as Javascript is a single-threaded language, then how it can perform asynchronous functions? It is due to…
-
Top 5 AMD Gaming Laptops under 60k
Are you looking for a good gaming laptop with great performance and built quality but under the budget? Gone are the days, when you need to pay a huge chunk of money to play all high-end games with high refresh rates. Here is the list of some best AMD Gaming Laptops which yield high performance…
-
What is the Samsung one connect?
Samsung is one of the biggest tech manufacturing companies in the world with a market cap of $499.3 billion. Samsung sold everything from clothes iron, washing machines, refrigerators, cell phones to Tv and even military artillery. Samsung also leads in global market Tv with 33.1% in the last quarter, seeing the market Samsung introduced Samsung…
-
What is a Callback Functions in JavaScript
Functions are the most important component of any programming language. It is a set of code that specifically performs some tasks and returns the value depending upon the returning type of the function. Callback functions are a vital element of JavaScript. In order to get more efficient in JavaScript, you need to understand what is…
-
A simple React Hook Form Validation with Formik and Yup
A Form is a very important component of any webpage. It allows developers to make the users directly input their data for various fields ranging from the login page to even a simple quiz test. It is just the replication of a simple form which you fill on paper into digital format with various fields,…