bevacqua / js

:art: A JavaScript Quality Guide

Home Page:https://ponyfoo.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Adding New Feature in Doc

MadyDixit opened this issue · comments

Can we Add length literal in Array i.e will Help to find the length of Array.

array.length
return : x: size of Array

I'm on it

var array = [];
array["foo"] = "bar";
array["bar"] = "foo";

document.write(array.length);