JSFiddle - React, Tailwind, and code Playground

by AlexGun

JavaScript

function logEachLetter(str) {
str.split("").forEach(item => console.log(item))
}

logEachLetter('Elbrus')