javascript remove dash code example Example: how to remove dash from string in javascript var str="185-51-671"; var newStr = str.replace(/-/g, "");