📅  最后修改于: 2022-03-11 15:03:10.997000             🧑  作者: Mango
// split the text into array of chars using empty string
console.log("ABCDEFGHIJK".split(''));
// split the text into array of chars using empty string and limit to 3 chars
console.log("ABCDEFGHIJK".split('', 3));