Rowdy Coders

We code Aggressively!

  • Home
  • About
  • Interview Articles
  • Contact Us
Menu

Recent Posts

  • Mastering Interceptors and Auth Guards in JavaScript & React
  • Building a Async Concurrency-Controlled Task Manager in JavaScript
  • Converting a DOM Object to Real DOM Elements in JavaScript
  • Logging Access to Object Properties in JavaScript Using Proxy
  • Implement a Retry Function for a Promise in JavaScript

From the blog

April 20, 2024

General

1 Comment

Create a polyfill for the filter array method

In modern JavaScript development, we often rely on array methods like filter to manipulate and extract data from arrays with ease. However, older browsers may lack support for these convenient methods, leading to compatibility issues in our projects. In this blog post, we’ll explore the concept of polyfills and walk through the process of creating […]

April 19, 2024

General

No Comments

Difference between let, var and const

JavaScript, with its versatile nature, offers multiple ways to declare variables. However, understanding the nuances between let, var, and const is crucial for writing clean, efficient, and bug-free code. In this blog post, we’ll explore the differences between these variable declarations and when to use each one. Here’s a quick example to illustrate the differences: […]

April 17, 2024

interview, react js

1 Comment

Creating a dynamic counter with Start, Pause and Reset button functionality using React

During my recent job search, I encountered this question multiple times, posed by interviewers from reputable companies such as FlexCar and BetterHalf. It underscores the importance of understanding custom hooks, state management and component composition in React interviews. we’ll walk through the process of building a counter that not only displays the current count but […]

« Previous 1 … 5 6 7
Close Menu