0
print "*" * 80

This is an elegant way to print delimiters (that has 80 astreisk symbols) in python log files. How can i do this in nodejs?

Saravana Kumar
  • 296
  • 2
  • 13

1 Answers1

3

In node.js it is something like this:

console.log(new Array(80).join('*'));
Andy
  • 46,308
  • 56
  • 161
  • 219
vanadium23
  • 3,376
  • 14
  • 26