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.
以下に示すような配列があります。3 を入力すると「Three」と表示され、1 と入力すると「One」と表示されます。
var v1 = new Array("('one', '1)", "('Two', '2')", "('Three', '3)");
JavaScript オブジェクト リテラルを使用できます。
var v1 = { 1: 'one', 2: 'two', 3: 'three' }; alert(v1['1']); // one
フィドル