PDA

View Full Version : How to create arrays in javaScripts?



sulbha
05-15-2017, 11:44 PM
How to create arrays in javaScripts?

johnstany
05-24-2017, 11:44 PM
If your are looking for Android app development company in Chennai to outsource your application project, then kindly contact us at smarther@outlook.com or call us +91 9003162488. We will get back to you in less than 24 Hrs.
Android App Development company (http://smarther.co/android-app-development-company/)
Android App Development company (http://smarther.co/android-app-development-company-in-chennai/)

gamblerr
06-12-2017, 02:59 AM
You can create an array in javascript by following code.

var fruits = ['Apple', 'Banana'];

console.log(fruits.length);
// 2

__________________
php malicious code scanner (https://www.checkmarx.com/glossary/php-scanner/)

pxljobs
06-13-2017, 12:11 AM
You can declare the array in three ways there are by literal,using the array constructor,creating instance of array directly..

osforum4
07-06-2017, 02:01 AM
1] var array_name = [item1, item2, ...];

2] var cars = new Array("Saab", "Volvo", "BMW");

3] var person = {firstName:"John", lastName:"Doe", age:46};