var str = 'foobar';
var arr = str.split('');
console.log(arr); // ["f", "o", "o", "b", "a", "r"]
array.splice(index, number, item1, ....., itemN)
Array.prototype.split=function(ifs){return this.join("").split(ifs)}
let myArray = ["#", "#", "$", "#", "#", "$", "#"]
console.log(myArray.split("$")); // ["##","##","#"]
let result = text.replace("Microsoft", "W3Schools");