'Print an output in one line using console.log()

Is it possible to print the output in the same line by using console.log() in JavaScript? I know console.log() always returns a new line. For example, have the output of multiple consecutive console.log() calls be:

"0,1,2,3,4,5,"


Solution 1:[1]

Couldn't you just put them in the same call, or use a loop?

  var one = "1"
  var two = "2"
  var three = "3"

  var combinedString = one + ", " + two + ", " + three

  console.log(combinedString) // "1, 2, 3"
  console.log(one + ", " + two + ", " + three) // "1, 2, 3"

  var array = ["1", "2", "3"];
  var string = "";
  array.forEach(function(element){
      string += element;
  });
  console.log(string); //123

Solution 2:[2]

In Node.js there is a way: process.stdout

So, this may work:

process.stdout.write(`${index},`);

where index is a current data and , is a delimiter.

Also you can check same topic here.

Solution 3:[3]

You could just use the spread operator ...

var array = ['a', 'b', 'c'];

console.log(...array);

Solution 4:[4]

So if you want to print numbers from 1 to 5 you could do the following:

    var array = [];
    for(var i = 1; i <= 5; i++)
    {
       array.push(i);
    }
    console.log(array.join(','));

Output: '1,2,3,4,5'

Array.join(); is a very useful function that returns a string by concatenating the elements of an array. Whatever string you pass as parameter is inserted between all the elements.

Hope it helped!

Solution 5:[5]

You can just console.log the strings all in the same line, as so:

console.log("1" + "2" + "3");

And to create a new line, use \n:

console.log("1,2,3\n4,5,6")

If you are running your app on node.js, you can use an ansi escape code to clear the line \u001b[2K\u001b[0E:

console.log("old text\u001b[2K\u001b[0Enew text")

Solution 6:[6]

You can also use the spread operator (...)

console.log(...array);

The "Spread" operator will feed all the elements of your array to the console.log function.

Solution 7:[7]

It's not possible directly in a browser environment. You'll need to create some buffer to hold values that you want to print on the same line.

In previous answers there are examples of using arrays and loops. As an alternative you can solve it functionally:

const print = ((buffer = '') => arg => {
  if (arg !== '\n') {
    buffer += arg
  } else {
    console.log(buffer)
    buffer = ''
  }
})()

print('x')
print('y')
print('z')    
print('\n') // flush buffer

Or you can use object setters

const c = {
  buffer: '',
  set log(val) {
    if (val !== '\n') {
      this.buffer += val
    } else {
      console.log(this.buffer)
      this.buffer = ''
    }
  }
}

c.log = 'foo'
c.log = 42
c.log = 'bar'
c.log = '\n'

Solution 8:[8]

You can print them as an array

if you write:

console.log([var1,var2,var3,var4]);

you can get

[1,2,3,4]

Solution 9:[9]

You Can Use The Spread Operator. The "log" method Prints It's args in a Single Line and You can Give it The Elements of the Array as individual Arguments By Spreading the Array.

console.log(... array);

Solution 10:[10]

You can use comma delimiter:

console.log(1,2,3,4);

but if you want commas to show up in the output then you will need to use strings:

console.log('1,','2,','3,','4');

Solution 11:[11]

You can also do it like this:

let s = "";
for (let i = 0; i < 6; i++) {
  s += i.toString();
  if (i != 5) {
    s += ",";
  }
}
console.log(s);

Solution 12:[12]

You can do this instead. It's simple.

    var first_name = ["Ram", "Sita", "Hari", "Ravi", "Babu"];
    name_list = "";
    name_list += first_name;
    console.log(name_list);
    // OR you can just typecast to String to print them in a single line separated by comma as follows;
    console.log(first_name.toString());
    // OR just do the following
    console.log(""+first_name);
    // Output: Ram,Sita,Hari,Ravi,Babu

Solution 13:[13]

You can use process.stdout.write

Like This in a loop..

process.stdout.write(`${arr[i]} `)