const str = 'Js removes a specified character in a string - Java Programs - CSDN Blog';
let tempArr = [];
tempArr = str.split('a ');
const newStr = tempArr.join(''); // Js removes specified character in string - JavPrograms - CSDN Blog