3) string repeat string 반복 가능 // es6 " ".repeat(4 * depth) "foo".repeat(3) // es5 Array((4 * depth) + 1).join(" "); Array(3 + 1).join("foo");