anjan-dutta

anjan-dutta @anjandutta

About: Welcome to my page! I am Anjan, a front-end developer from India. In my blog, I write about Javascript and front-end programming articles to help other developers.

Joined:
May 24, 2021

anjan-dutta
articles - 25 total

I Built a Free Tracker to Filter Leetcode Questions by Company

I built this to make DSA prep less overwhelming, especially when targeting companies. link →...

Learn More 0 1Apr 14

🚀 I Built A Tool to Filter Recent Leetcode Interview Questions by Company

Hey Dev community! 👋 I recently launched a small project that came out of my own interview prep...

Learn More 2 1Apr 10

Remove duplicates from an unsorted linked list without using any extra space [Javascript]

// defining a linked list let LL = {data: 1, next: {data: 2, next: {data: 3, next: {data: 1, next:...

Learn More 0 0Aug 19 '24

Remove duplicates from an unsorted linked list [JavaScript]

// defining a linked list using nested object let LL = {data: 1, next: {data: 2, next: {data: 3,...

Learn More 0 0Aug 19 '24

My online HTML editor in action

Proud moment for me :) Here is a link for you to try out...

Learn More 3 1Jun 19 '24

List of FAANG front-end coding questions.

Star Rating Design Pop Over Design Accordion (Amazon onsite) Design Carousel Design grid using...

Learn More 1 2Jun 18 '24

Made an online HTML editor

Okay, so this is the latest addition to my side project. I made an HTML editor. To be honest, it...

Learn More 0 0Jun 17 '24

The free code compiler found one more purpose

I still remember moments from the early days of my web development journey. It was early 2009 and...

Learn More 0 0Oct 29 '23

My side project is costing me too much

I run a side project https://freecodecompiler.com. As the domain states, it is an online code...

Learn More 0 0Oct 26 '23

Tailwind CSS is a blessing in disguise!

Since mid last month launch till last week, my side project FreeCodeCompiler served more than 2,000...

Learn More 0 0Oct 1 '23

I have launched a side project, an online code compiler

I am very happy to share that I have launched a side project I had been hacking on the weekends and...

Learn More 0 0Sep 15 '23

My blog reached 100 visitors a day!

I am glad to share that my blog crossed the 100 visitors a day mark yesterday. I know it's not a lot,...

Learn More 3 0Oct 20 '21

I used to publish my blog articles but now I commit them!

I've setup CI/CD pipeline for my blog! And it's amazing! For a context, the blog is a static site...

Learn More 1 0Sep 8 '21

I am enjoying the AWS world.

In my last post I described how I moved from wordpress to serverless. Though it is very early to...

Learn More 1 0Sep 7 '21

Work life balance

I am a multi tasker. When you have a day job, a blog and a family, you need to be one...

Learn More 0 0Aug 28 '21

Moved my blog from Wordpress to Serverless

I published my first blog in mid-2018 and since then this is my 4th revamp. I used to host my blog,...

Learn More 1 2Aug 13 '21

Execution Context in Javascript

The execution context in javascript is an environment. Usually when we run a function, it is executed...

Learn More 2 0Jul 28 '21

Writing a function in Javascript

What is a function It is a way of writing a set of logic separately from the rest of the...

Learn More 4 2Jul 24 '21

Check if an array includes a value in Javascript

In this article, I am going to describe 4 methods Using The indexOf() method Check if...

Learn More 3 0Jul 23 '21

List of RGB Color Codes and Their Names

Find all RGB color codes and their names here in my blog post

Learn More 1 0Jul 21 '21

Javascript sort array of objects

Before trying to sort array of objects in javascript, we must check if all objects in that array has...

Learn More 6 2Jul 8 '21

Ways to convert string to date in Javascript

This article was originally posted in my blog. A string date can be of three types and, we will...

Learn More 8 0May 25 '21

How to remove spaces from a string in javascript

Space can be present at any position in a string and, a single solution will not work in every...

Learn More 4 0May 25 '21

How to create a custom select dropdown in HTML, CSS and Javascript

Select is a form element in HTML. I am going to tell you in this article how to style a select option...

Learn More 6 0May 24 '21

Objects in Javascript

Objects in Javascript are collection of properties. An object stores data in the form of key value pa...

Learn More 1 0May 24 '21