Associative Array - advance


/ Published in: JavaScript
Save to your folder(s)

/* ---===[ EXAMPLE ]===--- */

var TT = new AssociativeArray();

TT.add("k-1", "Value 1");
TT.add("k-2", "Value 2");
TT.add("k-3", "Value 3");
TT.add("k-4", "Value 4");

alert(TT.to_string());

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.