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
  • 394
  • 1
  • 3
  • 13

1 Answers1

3

In node.js it is something like this:

console.log(new Array(80).join('*'));
Andy
  • 49,085
  • 60
  • 166
  • 233
vanadium23
  • 3,516
  • 15
  • 27