function isNegative(element, index, array) { return element < 0; } const int8 = new Int8Array([-10, 20, -30, 40, -50]); const negInt8 = int8.filter(isNegative); console.log(negInt8); // Expected output: Int8Array [-10, -30, -50]