I am trying to create
window1 = Ext.create('Ext.window.Window', {
then
window2 = Ext.create('Ext.window.Window', {
and so on
I want them to be created in the for
loop that I already have but the standart dynamic variable names for JavaScript didn't work, probably because it wants me to write new
or may be something to do with global scope, I don't know.