Is there a way to replace a portion of a String at a given position in java script. For instance I want to replace 00 in the hours column with 12 i
00
12
You can direclty use replace() method along with indexOf() of string in Javascript.