Why does the node documentation list this opening bracket before the comma when describing this function?
fs.createReadStream(path[, options]) fs.createWriteStream(path[, options])
Translates into this: fs.readFile('/etc/passwd', 'utf-8', callback());
so why do they make it like this fs.createReadStream(path**[,** options]) and not like this fs.createReadStream(path, [options])
Am I missing something here?