I have a array on Jquery that have some values .Now i want to replace a character from all the items in the array if it have in the array.
var arrayData = [
"Safi Landmark Hotel and Suites",
"Safi Landmark Hotel Suites",
"Safi Landmark Hotel and Suites"
];
This is my array now i want to replace 'and' from the items with '&' .How can we do this without using loop.