11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst list = []; 41cb0ef41Sopenharmony_ciwhile (true) { 51cb0ef41Sopenharmony_ci const record = new MyRecord(); 61cb0ef41Sopenharmony_ci list.push(record); 71cb0ef41Sopenharmony_ci} 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_cifunction MyRecord() { 101cb0ef41Sopenharmony_ci this.name = 'foo'; 111cb0ef41Sopenharmony_ci this.id = 128; 121cb0ef41Sopenharmony_ci this.account = 98454324; 131cb0ef41Sopenharmony_ci} 14