for( i=1; i<=10; i++) var "name" + i = i;
var obj = {} for( i=1; i<=10; i++){ obj["name"+i] = i; } alert(obj.name1);