Contact: aviboots(AT)netvision.net.il
41,857 questions
54,547 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 */