Posts by Samim
Author Biographical Info: Not available
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
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
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
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
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
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
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
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