Open mdqst opened 1 week ago
The typo in the text is in the command:
node –-version
The dash used before version is an en dash (–) rather than a hyphen-minus (-), which is the correct character for command-line options.
version
–
-
Corrected version:
node --version
The same issue occurs with the npm command:
npm
npm –-version
npm --version
Fixed.
The typo in the text is in the command:
The dash used before
version
is an en dash (–
) rather than a hyphen-minus (-
), which is the correct character for command-line options.Corrected version:
The same issue occurs with the
npm
command:Corrected version:
Fixed.