Lakshya Thakur
Lakshya Thakur's Blog

Lakshya Thakur's Blog

Follow
homeRandom DS/AlgoSponsor By ChanceHackathon experienceUnsplashSoundcloudStackOverflowbadges
Tag

Frontend Development

#frontend-development

More content

Read more stories on Hashnode


Articles with this tag

Web Performance - Reducing Paint flashing on Amazon.com

Aug 5, 20214 min read 940 views

That's a mouthful title alright !! But this was a challenge which was organized at the end of a Web Performance Bootcamp held by team devkode...

Web Performance - Reducing Paint flashing on Amazon.com

A wild handleEvent appeared 😮 !!!

Jul 10, 20213 min read 706 views

Let's say, we have a DOM element by the name of element and we want to add event listeners to it. How would you do so ? Here are two ways which can...

A wild handleEvent appeared 😮 !!!

Implementing the DOM contains() method

Jul 6, 20214 min read 815 views

As per MDN, The Node.contains() method returns a Boolean value indicating whether a node is a descendant of a given node, i.e. the node itself, one...

Implementing the DOM contains() method

Implementing Pagination feature in Vanilla JS

Jul 2, 20215 min read 2.7K views

Today we will implement a Paginator class which will have the following API :- // Initialization const paginator = new...

Implementing Pagination feature in Vanilla JS

Implementing a Star Rating component in Vanilla JS

Jun 30, 20215 min read 3.8K views

Star Rating/Review UI is a common sighting across different sites on the Internet. Today, we will implement a simple star rating component using...

Implementing a Star Rating component in Vanilla JS

JS Spec debunking for toPrimitive on an object

Jun 26, 20212 min read 46 views

Let's say we have an object by the variable name of obj and ToPrimitive abstract method has been called on it implicitly. This implicit call happens...

JS Spec debunking for toPrimitive on an object