📜  拆分 javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:46.558000             🧑  作者: Mango

代码示例6
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.*/