1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
// Initialisation des objets Commerces
var com1 = new Commerce("12345", "04000", "04W44", "120127", "Magasin1");
var com2 = new Commerce("98765", "04002", "04W48", "120280", "Boutique2");
var com3 = new Commerce("52463", "04002", "04W42", "120130", "Boutique1");
var com4 = new Commerce("18954", "04003", "04W49", "120002", "Echoppe2");
var com5 = new Commerce("49731", "04003", "04W42", "120048", "Magasin2");
var com6 = new Commerce("82713", "04001", "04W41", "120640", "Echoppe1");
var com7 = new Commerce("64972", "04001", "04W44", "120145", "Magasin3");
var com8 = new Commerce("53198", "04002", "04W44", "120639", "Echoppe3");
var com9 = new Commerce("25645", "04001", "04W41", "120478", "Echoppe4");
var com10 = new Commerce("32145", "04003", "04W49", "120987", "Magasin4");
// Insertion des objets dans le tableau (peu importe l'ordre en réalité)
tabCommerces.push(com1);
tabCommerces.push(com2);
tabCommerces.push(com3);
tabCommerces.push(com4);
tabCommerces.push(com5);
tabCommerces.push(com6);
tabCommerces.push(com7);
tabCommerces.push(com8);
tabCommerces.push(com9);
tabCommerces.push(com10); |
Partager