Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

  1. I understand this.value.split("\n"), but how does it get the length of the split?

  2. ||1 = "or 1" right? So how does this fit in?

share|improve this question

2 Answers

this.value is a string value.

Javascript strings have a split function, which returns a string array.

String arrays have a length.

In javascript, 0 is treated as false.

So, set this.rows equal to the number of strings resulting from splitting the input by the newline character. If this number is 0, then set it to 1 instead.

share|improve this answer
  1. split method of javascript string object returns array of string objects, that has length property.

  2. Logical operator || in javascript returns the value of its first operand that, when converted to boolean, evaluates to true. Therefore, if this.value.split().length is zero (equivalent to false), the expression will return 1 (equivalent to true).

share|improve this answer
I understand number one... Number two I can't visualize. :( – sirkyuubi Sep 27 '12 at 5:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.