![]() |
![]() | #1 |
Stalker Join Date: 09 2002 Location: Припять Age: 87
Posts: 853
Downloads: 0 Uploads: 0
Reputation: 12 | 4 | ![]()
znachit tak. unem massive list = new Array(); ira mej lcnum em elementner tipa: list['cat'] = "kiska"; list['dog'] = "sobachka"; banakanabar list['mouse'] veradarcnum a UNDEFINED vonc anem vor list['cat'] [email protected]!!! jnjem na X, vor eli verdarcni UNDEFINED yete grum es list['cat'] = null; [email protected] chi veranum ayl darnum a null. ka metodner tipa splice, ban man, bayc et sax ashxatum a menak indexov. zaranee priblagodaren
__________________ ... for long you live and high you fly ... |
![]() |
![]() | #2 |
Младенец Join Date: 03 2005 Location: Yerevan, Armenia Age: 42
Posts: 11
Downloads: 0 Uploads: 0
Reputation: 0 | 0 | ![]()
The slice method creates a new array from a selected section of an array. The original array is unaffected by this but, if a string or number in one array is altered, it is not reflected in the other, whereas a change to a referenced object can be seen in both Array objects. The slice method uses the zero-based array index to determine the section out of which to create the new array. It extracts up to, but not including, the 'end' element (if no 'end' is specified, the default is the very last element). The following code creates an array called 'trees' and then displays a 'slice' of it: Code: trees = ["oak", "ash", "beech", "maple", "sycamore"] document.write(trees.slice(1,4)) Output: ash,beech,maple If you use a negative index for the 'end', this specifies an element so many places from the end. Continuing with the above example, the following code would display the second through the third to last elements of the array: Code: trees = ["oak", "ash", "beech", "maple", "sycamore"] document.write(trees.slice(1,-2)) Output: ash,beech |
![]() |
![]() | #3 |
Младенец Join Date: 03 2005 Location: Yerevan, Armenia Age: 42
Posts: 11
Downloads: 0 Uploads: 0
Reputation: 0 | 0 | ![]()
The splice method is used to add and/or remove elements of an array returning an array of the elements removed. You first need to specify the index at which you wish to start removing elements, and the number to remove. (if 'howMany' is 0, you should specify at least 1 element to add). The following code creates an array 'cars' and then displays two elements starting with 'cars[1]': Code: cars = ["Mercedes", "Ford", "Chrysler", "Honda", "Volvo"] document.write(cars.splice(1,2)) Output: Ford,Chrysler You can also include optional new elements to replace the ones removed. Expanding on the previous example, the following code would create an array consisting of the two extracted elements "Ford" and "Chrysler", but replace them with "Citreon" in the original array: Code: cars = ["Mercedes", "Ford", "Chrysler", "Honda", "Volvo"] removed_cars = cars.splice(1, 2, "Citreon") document.write(removed_cars + "<BR>") document.write(cars) Output: Ford,Chrysler Mercedes,Citreon,Honda,Volvo |
![]() |