mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
13 lines
244 B
JavaScript
13 lines
244 B
JavaScript
// Garbage collection test
|
|
|
|
var a = {};
|
|
|
|
for (i=0;i<10;i++) {
|
|
a = {"12345678901234567890":"asdfghjkl;zxcvbnm,wertyuioiuytredscfvghjkmnbvfdrtyujknbvcfdrtyuikmnbgv"};
|
|
// create loop
|
|
a.b = { c : { d : a } };
|
|
a = undefined;
|
|
}
|
|
|
|
result = 1;
|