Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 179 Bytes

File metadata and controls

14 lines (10 loc) · 179 Bytes

3) string repeat

  • string 반복 가능
// es6
" ".repeat(4 * depth)
"foo".repeat(3)

// es5
Array((4 * depth) + 1).join(" ");
Array(3 + 1).join("foo");