mrpatches123
Results
2
issues of
mrpatches123
code ```js const object = { help: 8, heloo: 9, hejkekj: 8 }; Object.entries(object).forEach(([key, value]) => { console.warn(JSON.stringify({ [key]: value })); }); ``` error: Failed to get stack trace for...
every time I step through ```js const test = []; const array = Array.from(Array(256), (item, i) => ({ x: i % 16, z: Math.floor(i / 16) % 16 })) .filter(({...