regular expression 으로 가능
STRING.split(REGEX)
ex)
js> "2022-04-29T09:22:39.209Z".split(/[T,.]/) //['2022-04-29', '09:22:39', '209Z']