1'use strict'; 2 3const list = []; 4while (true) { 5 const record = new MyRecord(); 6 list.push(record); 7} 8 9function MyRecord() { 10 this.name = 'foo'; 11 this.id = 128; 12 this.account = 98454324; 13} 14