[SOLVED] How do I change text direction

Issue I am making a word counter but the text is not in the left. How can I make it to the left? let area = document.getElementById(‘area’); let char = document.getElementById(‘char’); let word = document.getElementById(‘word’); area.addEventListener(‘input’, function() { // count

Continue reading