Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumNodeJSreadable vs writable streamsSingle-choice MCQ

What does Readable.from(iterable) return by default regarding its mode, and what is the consequence?

const { Readable } = require('stream'); const r = Readable.from(['a', 'b', 'c']); console.log(r.readableObjectMode);