I've started to go through Node tutorials on nodeschool.io, and the second assignment was to write a program that will count the number of newlines in a file and print it out. My solution looks like this
var fs = require('fs');
var file = process.argv[2];
var buff = fs.readFileSync(file);
var str = buff.toString();
var str_arr = str.split('\n');
var newline_length = str_arr.length-1;
console.log(newline_length);
It's correct, and works. Theirs is
var fs = require('fs') var contents = fs.readFileSync(process.argv[2]) var lines = contents.toString().split('\n').length - 1 console.log(lines) // note you can avoid the .toString() by passing 'utf8' as the // second argument to readFileSync, then you'll get a String! // // fs.readFileSync(process.argv[2], 'utf8').split('\n').length - 1
While both are correct, mine is longer (more lines used because I declared variables at every step).
I am wondering, am I wrong in declaring the variables for every step and then working on the code as I go? I mean, it does take more space, but I have the feeling that it's a bit clearer what I'm doing, unlike theirs. Or am I mistaken and haven't really gotten to that level where I can safely write everything in a one line like they did?
Also am I using memory space by declaring too many variables?
This task is rather trivial, and mostly the code I've written so far is for web elements (carousels and whatnot), so I'm used to writing mostly jQuery code instead of pure JavaScript (declaring variables used in events and such). Does this have any impact in real life apps?
1 Answer 1
The two versions execute exactly the same steps, the only difference is the number of intermediary local variables.
Which version is more clear can be a matter of opinion. Beginners may find your verbose version more clear, more experienced programmers may find it tedious.
The good thing about the second version is that the local variables mark bigger logical steps that are quite intuitive. With one weakness, the meaning of the lines
variable is not immediately clear. If you say "lines", it might mean a collection, or the count of lines.
But actually it's neither, it's the number of newline characters.
By contrast, your version marks the steps in too much detail,
for example it's not particularly interesting that readFileSync(file)
doesn't return a String and it needs to be converted.
That step could be collapsed, as it is a too specific implementation detail,
not something "logical".
I think the best of both worlds would be more like this:
var fs = require('fs');
var path = process.argv[2];
var text = fs.readFileSync(path).toString();
var lines = text.split('\n');
var newlines_count = lines.length - 1;
console.log(newlines_count);
Each step marks a bigger logical step, with slightly more natural variable names.
-
\$\begingroup\$ So basically it all comes down to experience - inexperienced user (me) needs more verbosity, while experienced ones don't. Is there any impact on having too many local variables declared, performance wise? \$\endgroup\$dingo_d– dingo_d2016年06月05日 11:25:54 +00:00Commented Jun 5, 2016 at 11:25
-
1\$\begingroup\$ @dingo_d Think in terms of big logical steps. Something that a less technical person like a business analyst would understand. If you do like that, then the verbosity can be helpful. The names you had like
buff
andstr_arr
were not particularly intuitive or natural. Naming is hard, and practice does help. In terms of performance, no difference whatsoever. \$\endgroup\$janos– janos2016年06月05日 11:52:53 +00:00Commented Jun 5, 2016 at 11:52 -
1\$\begingroup\$ @dingo_d, everything janos said is right, but i would try to move away from the overly verbose style as quickly as possible. you will probably find that it's easier than you think, even as a beginner. \$\endgroup\$Jonah– Jonah2016年06月05日 16:24:42 +00:00Commented Jun 5, 2016 at 16:24
-
\$\begingroup\$ I'll have that in mind definitely. It's just that I've gotten used to have everything laid out clear when writing JS, that I do it automatically I guess. \$\endgroup\$dingo_d– dingo_d2016年06月05日 16:38:29 +00:00Commented Jun 5, 2016 at 16:38
Explore related questions
See similar questions with these tags.
lines
is poorly named, because it suggests that it's an array of the lines themselves, rather than a count of the number of lines.numberOfLines
ornumLines
orlinesCount
, etc would be more accurate. \$\endgroup\$