I'm getting list of elements but it is object when I want it to be array. I got simply code like this:
var obj = document.getElementsByClassName('_54nc');
var arr = $.map(obj, function(value, index) { return [value]; });
console.log(typeof arr);
And console is saying "object". How do I convert this?