What does this frame-header inspection print?

from HTTP/2
Node 24 beginner 3 min

What does this frame-header inspection print?

JavaScript
const header = Buffer.from([0, 0, 0, 4, 1, 0, 0, 0, 0]);
console.log(header.readUIntBE(0, 3));
console.log(header[3]);
console.log(header[4] & 1);
Open in playground
Report an error