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?
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?
 
    
    In node.js it is something like this:
console.log(new Array(80).join('*'));
 
    
    