array/list
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2018
05:16 AM
01-28-2018
05:16 AM
array/list
hi, how can i create array or list of arrays by jscript?
3 REPLIES 3
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2018
12:43 PM
01-28-2018
12:43 PM
function twoDimArrays() { var vehicals = [["Toyota", "Nissan","Volvo"],["Honda","Yamaha","Halidavidson"]]; Log.Message(vehicals[1][1]); }
https://stackoverflow.com/questions/966225/how-can-i-create-a-two-dimensional-array-in-javascript
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2018
11:51 PM
01-29-2018
11:51 PM
Thanx but I didnt mean to matrix... I need to create an array with value=0 and insert the value at a specific index.
How do iI first create the array and how can I insert value to the specific index?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2018
05:20 AM
01-31-2018
05:20 AM
Check out below... basic JScript/JavaScript array operations.
function demoArray(){ var myArray = []; myArray.length = 5; // sets the array to have 5 elements myArray[2] = 0; // sets the 3rd element (with index of 2) to value of 0 }
Might be worth checking out https://www.w3schools.com/js/js_arrays.asp and related links... I know it says "JavaScript" but JScript is just, for all intents and purposes, an old version of JavaScript.
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
