I am using the following JavaScript code:
var a = [23, 34, 45, 33];
Is a considered an array of integers?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes,
ais an array. However, since Javascript isn’t statically typed, it can contain other types as well, such as strings, objects, other arrays and so on. Therefore, tagging it as “an array of integers” wouldn’t be right.