Contact: aviboots(AT)netvision.net.il
41,427 questions
53,974 answers
573 users
const buffer = new Uint8Array(1024 * 1024); // Allocates 1MB = 1,048,576 bytes console.log(buffer.length); /* run: 1048576 */
const array = new Array(1024 * 1024).fill(0); // Allocates 1MB = 1,048,576 bytes console.log(array.length); /* run: 1048576 */
const buffer = Buffer.alloc(1024 * 1024); // Allocates 1 MB = 1,048,576 bytes console.log(buffer.length); /* run: 1048576 */