![]() | |
| |||||||
| Home | Register | Blogs | FAQ | Members List | Calendar | Downloads | Arcade | Mark Forums Read |
| Web Development Java/PHP/Perl/ASP and more |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 |
| Stalker | javascript array() help needed asap 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'] element@!!! jnjem na X, vor eli verdarcni UNDEFINED yete grum es list['cat'] = null; inq@ 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: Mar 2005 Location: Yerevan, Armenia
Posts: 11
Rep Power: 0 Reputation:
10 | 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: Mar 2005 Location: Yerevan, Armenia
Posts: 11
Rep Power: 0 Reputation:
10 | 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 |
| | |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| add Javascript code at runtime | greka | Web Development | 0 | Aug 12, 2004 14:36 |
| [java] Read return value of JavaScript | greka | Web Development | 0 | Jun 18, 2004 13:49 |
| JavaScript: working with forms | Aram Ghazanchyan | Web Development | 1 | Feb 12, 2004 10:17 |
| URGENT: WebMaster needed! | dolphin | Jobs | 1 | Jun 4, 2003 12:57 |
| PHP Developer needed | Pit | Jobs | 2 | Mar 26, 2003 10:19 |