Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 answers
573 users
function printDiagonalTextLTR(text) { for (let i = 0; i < text.length; i++) { console.log(" ".repeat(i) + text[i]); } } printDiagonalTextLTR("HELLO WORLD"); /* run: H E L L O W O R L D */