Does this create an array in JavaScript?
Posted
by As
on Stack Overflow
See other posts from Stack Overflow
or by As
Published on 2010-04-08T11:32:13Z
Indexed on
2010/04/08
12:13 UTC
Read the original article
Hit count: 97
JavaScript
I am using the following JavaScript code:
var a = [23, 34, 45, 33];
Is a
considered an array of integers?
© Stack Overflow or respective owner