Skip to main content
Commonmark migration
Source Link

#JavaScript (ES6), 34 bytes

JavaScript (ES6), 34 bytes

f=x=>x?f(x-1)+` `+'*'.repeat(x):'' 

#JavaScript (ES6), 34 bytes

f=x=>x?f(x-1)+` `+'*'.repeat(x):'' 

JavaScript (ES6), 34 bytes

f=x=>x?f(x-1)+` `+'*'.repeat(x):'' 
Source Link
Huntro
  • 489
  • 1
  • 3
  • 9

#JavaScript (ES6), 34 bytes

f=x=>x?f(x-1)+` `+'*'.repeat(x):''