javascript set length code example
Example 1: javascript object length
var size = Object.keys(myObj).length;
Example 2: javascript set max length of string
String.prototype.trimEllip = function (length) {
return this.length > length ? this.substring(0, length) + "..." : this;
}