Input
maxLength = 10 User types: "hello"
Output
Counter text: "5 characters remaining"
Given an integer `maxLength`, build a restricted textarea with a live character counter.
index.htmlEditable templatestyles.cssEditable startermain.jsEditable startermaxLength = 10 User types: "hello"
Counter text: "5 characters remaining"
maxLength = 10 User pastes: "helloworld123"
Textarea value: "helloworld" Counter text: "0 characters remaining"
Input truncated to maxLength.
Use CSS classes instead of inline styles — add a `.warning` class and use `classList.toggle()`.