I am going through various angular examples, and sometimes I see angular developers increases a dummy variable like this below. Later they don't refer this variable in the controller scope. How should I interpret/read this?
<input on-keyup="count = count + 1">
Thanks.