Type Writer effect on any HTML Element
// get the element
const textElement = document.querySelector('.typing-text');
// make a string array
const devsLifecycle = [
"eat.",
"sleep.",
"code.",
"repeat.",
];
// start typing effect
setTyper(textElement, devsLifecycle);
Checkout the demo here: demo