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.
次の配列があります。
arr = [["Example"]]
私はそれをちょうどに減らす必要があります"Example"(基本的に、配列を削除するだけです)。
"Example"
できることはわかっていますarr[0][0]が、インデックスを使用せずに配列から文字列を削除する簡単な方法があるかどうかに興味があります。
arr[0][0]
明確にするために...配列には単一のアイテムしかありません。
単一のアイテムの場合、次を使用できます。
[['array']].join => 'array'
より多くの例で更新
複数のアイテムがある場合、文字列は結合されます。
[['array'], ['array']].join => 'arrayarray'
joinメソッド にパラメーターを渡すと、次のようになります。
join
[['array'], ['array']].join('&') => 'array&array'