JS String Split. split() method of String Object splits a string into an array: 1 2 3 var s = "endmemo.com"; var arr = s.split("m"); //arr is ["end","e" ...
確定! 回上一頁