What is the equivalent to PHP\'s array_column() in jQuery? I need the data inside the array without looping, in the same way as in PHP.
array_column()
You mean like this:
var a = {}; a['alfa'] = 0; a['beta'] = 1; alert(a['alfa']);