There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
You can also find further discussion and get answers to your questions over in Language Help.
Agree with a comment or answer? Like () to up-vote the contribution!
So I was hoping to grep certain part of the file with fs
However, it seems like it’s not possible to return value or reassign global variable in the callback
Is there any way this could be done? or perhaps reasons why it shouldnt be done?
For the callback function, I’m still not sure how the fs.readFile() knows how to pass the contents of ‘/.file.txt’ as the second argument. The callback function has two arguments, and even though its arguments are labeled as err and data, those could have been labeled anything. How does fs.readFile() know to pass a both a null or “falsy value” as the first argument and the data as the second argument (assuming there are no errors)?
I think I figured it out… Looking at the documentation for fs.filestream() on Node.
The fs.filestream() method is built specifically for callback functions with arguments (err, data). That makes sense, but wasn’t clear based on the lesson content. Good to know.