Sam

@samiullesum

65 Points 1 Followers

4 Posts

0 Answers

User has not added any information in their about section.

Sam · 3 years ago

Some techniques to optimize react application

Optimization is the selection of the best element from some set of available alternatives. React allows us to build encapsulated components that manage their own state, then composes them to...
4

Sam · 3 years ago

How to convert an Array into a Comma-Separated List in JavaScript

In this article, we'll cover how to convert an array into a comma-separated list in Javascript using either the toString() or join() methods. Let's get it started! toString() We'll go over t...
3

Sam · 3 years ago

Understanding Memoization In JavaScript

Memoization is a technique for storing values returned by a function to avoid having to redo computations that have already been performed previously. This technique is especially very usefu...

Sam · 3 years ago

Sticky navbar using react

I wanted to add sticky navbar in a project I was working on. After doing some research, I came up with the following solution: Initial Setup First, we are going to create a react-app from st...

Loading More Content