📅  最后修改于: 2022-03-11 15:03:46.558000             🧑  作者: Mango
var test= "Hi I am a fullstack developper";
var result= test.split("l");
//return:
// [Hi I am a fu,,stack deve,lopper]
/*the split methode replace the (letter/symbole) into the
brackets to "," and transform it to array.*/