count in javascript code example
Example 1: check length of number javascript
var number = 773;
number.toString().length;
Example 2: how get count of letters in javascript
//when use length for string this will be return the count of charactor
//in string
$("#about_me_textarea").val().length