2017-09-16 186 views

回答

2

可以使用逗號split字符串(,)字符串:

let lang = "a,b,c"; 
 
console.log(lang.split(','));

相關問題