I need to create an array of object literals like this:

var myColumnDefs = [
    {key:"label", sortable:true, resizeable:true},
    {key:"notes", sortable:true,resizeable:true},......

In a loop like this:

	for ( var i=0 ; i < oFullResponse.results.length; i++) {

	console.log(oFullResponse.results[i].label);

	}

The value of 'key' should be results[i].label in each element of the array.

thanks,

codecowboy.

link|improve this question

feedback

4 Answers

up vote 24 down vote accepted
var arr = [];
var len = oFullResponse.results.length;
for (var i = 0; i < len; i++) {
    var obj = {
        key: oFullResponse.results[i].label,
        sortable: true,
        resizeable: true
    };
    arr.push(obj);
}
link|improve this answer
Would upvote if not for SO's restrictions. – mcandre Aug 17 '09 at 20:11
3  
you can skip the var obj = { bit, just push the literal itself. – Peter Bailey Aug 17 '09 at 20:11
I would calculate length only once. – kangax Aug 17 '09 at 20:14
1  
@kangax, Length isn't "calculated", it's an O(1) operation. – Triptych Aug 17 '09 at 20:18
1  
@Triptych - Yes, but it's a property lookup that you execute with each iteration, which isn't free and can be avoided. Micro-optimization? Possibly. Also, it is a "live" value - if you modify the array in the loop, the length will change on successive iterations which could lead to infinity. Give this a watch youtube.com/watch?v=mHtdZgou0qU – Peter Bailey Aug 17 '09 at 20:32
show 3 more comments
feedback

RaYell's answer is good - it answers your question.

It seems to me though that you should really be creating an object keyed by labels with sub-objects as values:

var columns = {};
for (var i = 0; i < oFullResponse.results.length; i++) {
    var key = oFullResponse.results[i].label
    columns[key] = {
        sortable: true,
        resizeable: true
    };
}

// Now you can access column info like this. 
columns['notes'].resizeable;

The above approach should be much faster and idiomatic than searching the entire object array for a key for each access.

link|improve this answer
feedback
var myColumnDefs = new Array();

for (var i = 0; i < oFullResponse.results.length; i++) {
    myColumnDefs.push({key:oFullResponse.results[i].label, sortable:true, resizeable:true});
}
link|improve this answer
1  
It's better to init an array using [] instead of new Array(). – RaYell Aug 17 '09 at 20:17
feedback

I'd create the array and then append the object literals to it.

var myColumnDefs = [];

for ( var i=0 ; i < oFullResponse.results.length; i++) {

    console.log(oFullResponse.results[i].label);
    myColumnDefs[myColumnDefs.length] = {key:oFullResponse.results[i].label, sortable:true, resizeable:true};
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.