2017-09-16 12 views

答えて

2

あなたはカンマ(,)を使用して文字列をsplitできる文字列:

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

関連する問題