Reputation: 7939
Seems like a simple thing but I cant find anything on it!
var cookie = [1,2,3], total = cookie.magicMethodThatICantFindThatTotalsTheElements(); total = 3
Upvotes: 2
Views: 97
Reputation: 145408
Property length specifies the number of elements in array:
length
var total = cookie.length;