Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はJSでこのコードを持っています:
var array = ['one', 'two'];
配列を表示するたびに、次のように表示されます。
one,two
今私の質問は、その厄介なコンマを削除する方法はありますか?
それらを並べて表示するには、結合を使用できます。array.join(' ');
array.join(' ');
文字列オブジェクトの replace メソッドを使用できます。
array.toString().replace(',',' ')