Posts by Samim

Author Biographical Info: Not available

Combine Multiple Strings in JavaScript

By Samim

In this tutorial, I am going to explain how to combine multiple strings in JavaScript. Sometimes we need to combine two or more strings into one variable and use the combined strin.... Read More

Create multiline strings in JavaScript

By Samim

In this tutorial, you will see how to create multiline strings in JavaScript. There are three ways presented below to create strings that span multiple lines. Template literals The.... Read More

Replace spaces with underscores in JavaScript

By Samim

This tutorial will show you how to replace spaces with underscores in Javascript by using various methods. Below are the methods that I will use to replace spaces with underscores..... Read More

Rotate an element by an angle with CSS rotation Property

By Samim

Hello Coders, today we are going to learn about rotating an element by an angle using the CSS rotation property. What is Rotate() function? The rotate() function rotates any elemen.... Read More

Crop Images in Node.js

By Samim

In this tutorial, you will see how to crop an image in Node.js. We will use sharp library to crop images. Sharp is an image processing library of Node.js that supports different i.... Read More

Cut a video in specific start and end time in Node.js

By Samim

This tutorial will show you how to cut a video in specific start and end time in Node.js using ffmpeg library. For this purpose, we will use the fluent-ffmpeg library which is a wr.... Read More

Convert MP4 Video to GIF Animation in Node.js

By Samim

This tutorial will show you how to convert an MP4 video into a GIF animation in Node.js. We will use the fluent-ffmpeg library for this purpose. In this library, the complex comman.... Read More

Create a directory if it doesn’t exist using Node.js

By Samim

This tutorial will show you how to check if a directory exists or not and create the directory if it does not exist using Node.js. For this purpose, we need the fs module which is .... Read More