Please help me understand this line:
<textarea onkeyup='this.rows = (this.value.split("\n").length||1);' style="overflow-y: hidden;"></textarea>
I understand most of this line, but there are a few areas that I'm getting stuck at specifically in the onkeyup script...
I understand
this.value.split("\n"), but how does it get the length of the split?||1= "or 1" right? So how does this fit in?