+ 2
I think you referring to JavaScript Associative Arrays. Associative Arrays are arrays that uses named index instead of numbers. Ex: myVar["hiku"] = 25; But unfortunately, JavaScript don't support Associative Arrays but instead, the JavaScript treats the Associative Arrays as an object: myVar = { "hiku" : 25 };
5th Jul 2019, 12:04 PM
Nootnoot
Nootnoot - avatar