Hapus setiap elemen array yang dimulai dengan teks arang

arr = arr.filter(function (item) {
   return item.indexOf("ftp_") !== 0;
});
Evil Earthworm