Node.js: printing to console without a trailing newline?
Asked 07 September, 2021
Viewed 1.7K times
  • 51
Votes

Is there a method for printing to the console without a trailing newline? The console object documentation doesn't say anything regarding that:


console.log()

Prints to stdout with newline. This function can take multiple arguments in a printf()-like way. Example:

console.log('count: %d', count);

If formating elements are not found in the first string then util.inspect is used on each argument.

8 Answer