FizzBuzz HackerRank Challenge

2 years ago

Solve the fizzbuzz hackerrank challenge question: Given a number n, for each integer i in the range from 1 to…

React Paginated Table

2 years ago

A React paginated table is useful when presenting data in an organised and readable format. It's a way to present…

Cool CSS Tricks You Should Know

2 years ago

in a typical software development process, less is more. This tutorial outlines cool css tricks you should start using in…

How to Use Fetch API in Javascript

2 years ago

In this tutorial, we are going to use the Fetch API to fetch all public holidays in the United States.…

Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS

2 years ago

So the other day I was trying to integrate Remita payment integration system into a React software application I was…

How to Create REST API Using Vanilla PHP

2 years ago

API stands for Application Programming Interface. It's an intermediary that allows two applications to talk to each other by both…

Aspect Ratio in CSS

3 years ago

Aspect ratio in CSS refers to an element's proportional relationship between its width and height. Two of the most common…

Text to Speech in Javascript

3 years ago

Text to speech (also known as tts or speech synthesis) is an offshoot of the Web Speech API which provides…

Dynamically Populate Select Options in React JS

3 years ago

Dynamically Populate Select Options in React JS could be a real time-saver. When working with software applications built with libraries…

Remove Duplicate Values From an Array in JavaScript Using ES6

3 years ago

We can easily get the distinct values in our JavaScript array by using the spread operator. const arr = [1,1,4,5,5,37,57,28,67,67];…