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.
次のようなjsonデータがあります:
[2, 1, ["55", "54"]]
どうすれば 55 と 54 を取得できますか
ありがとう
var arr = [2, 1, ["55", "54"]]; arr[2][0] // 55 arr[2][1] // 54