count number of characters string javascript code example
Example 1: 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
Example 2: javascript count character in string
var str = "Hello World!";
var n = str.length;