Sep 14, 2020
In this tutorial, I have discussed 4 ways to check if a JavaScript string starts with a substring
Sep 8, 2020
In this tutorial, I have discussed how to check if a sting contains a substring in JavaScript using includes() and indexOf() methods
Sep 7, 2020
In this tutorial, I have discussed two ways to merge two or more arrays in JavaScript
Sep 7, 2020
Uppercase the first letter of a sting in JavaScript using slice() and toUpperCase() methods
Sep 5, 2020
4 best ways to repeat a string for N number of times in JavaScript, using Array.join(), string.repeat(), for loop, and recursion