일반 unshift() Method

황제낙엽 2009.03.02 13:22 조회 수 : 287 추천:114

sitelink1  
sitelink2  
sitelink3  
sitelink4  
extra_vars4  
extra_vars5  
extra_vars6  
http://www.w3schools.com/jsref/jsref_unshift.aspunshift 펑션은 배열의 0번째에 element를 새로 추가한다. 이때 기존값들은 자동적으로 index가 1 증가한다.

Definition and Usage

The unshift() method adds one or more elements to the beginning of an array and returns the new length.

Syntax

arrayObject.unshift(newelement1,newelement2,....,newelementX)

ParameterDescription
newelement1Required. The first element to add to the array
newelement2Optional. The second element to add to the array
newelementXOptional. Several elements may be added


Tips and Notes

Note: This method changes the length of the array.

Note: The unshift() method does not work properly in Internet Explorer!

Tip: To add one or more elements to the end of an array, use the push() method.


Example

In this example we will create an array, add an element to the beginning of the array and then return the new length:

·미리보기 | 소스복사·
  1. <script type="text/javascript">var arr = new Array();   

  2. arr[0] = 
    "Jani";   
  3. arr[1] = "Hege";   
  4. arr[2] = "Stale";
    document.write(arr + 
    "<br />");   
  5. document.write(arr.unshift("Kai Jim") + "<br />");   
  6. document.write(arr);

    </script>  

The output of the code above will be:

Jani,Hege,Stale
4
Kai Jim,Jani,Hege,Stale