const {zip, from, take, interval} = rxjs;
const str = "hello world"
zip(from(str), interval(1000))
.pipe(take(str.length))
.subscribe(([v]) => document.body.insertAdjacentHTML('beforeend', `<div>${v}</div>`));
This Pen doesn't use any external CSS resources.