Check string is date or not in JavaScript
To check a string value is a date, there are many ways to do that. But problem occur when string is a number, since a number can be converted into…
To check a string value is a date, there are many ways to do that. But problem occur when string is a number, since a number can be converted into…
In many places in programming, we want to replace special character with _ or anything else. There are many ways to replace but I am going to use replace function…
There are various way to reverse the string in javascript. Let try few ways to achieve same. 1. Using inbuilt methods let str = 'singhak'; let strArray = str.split(''); let…
The JavaScript has substring() method returns the part of the string between the start and end indexes, or to the end of the string. But slice() also another way to get substring from…
String formatting or Interpolation is an essential part of any programming language. In python string formatting can be done in different ways. It helps a programmer to create dynamic strings…