var str = "D&I - Product Deployment & Integration";
str .replace("&", "&")
This returns me only
"D&I - Product Deployment & Integration"
But second symbol is not getting replaced with "&"
var str = "D&I - Product Deployment & Integration";
str .replace("&", "&")
This returns me only
"D&I - Product Deployment & Integration"
But second symbol is not getting replaced with "&"