일반 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


번호 제목 글쓴이 날짜 조회 수
110 사용자 모듈 만들기 황제낙엽 2019.07.09 41735
109 User Agent 정보 모음 file 황제낙엽 2011.02.22 7768
108 페이지 스크롤 끝 확인 황제낙엽 2011.10.24 6230
107 ActiveX 설치 여부를 검사하는 스크립트 황제낙엽 2011.02.13 4053
106 브라우저의 새로고침과 종료에 대한 이벤트 황제낙엽 2017.08.11 2725
105 부동소수점 (floating-point) file 황제낙엽 2018.03.26 1122
104 javascirpt IME-Mode 설정하기 황제낙엽 2010.08.17 1112
103 경과 시간 구하기 황제낙엽 2019.10.04 1071
102 각 브라우저 별 User Agent 정보 황제낙엽 2011.02.22 823
101 자바스크립트의 쉬프트 연산자 (Shift Operator) 와 음수 (Negative) 이야기 황제낙엽 2012.05.31 726
100 iframe auto resize (cross browsing) 황제낙엽 2011.05.13 658
99 입력받은 날짜와 현재 날짜와의 비교 함수 황제낙엽 2019.08.02 500
98 url encode & decode 황제낙엽 2011.10.30 469
97 자바스크립트로 서버의 XML파일을 접근 (실패했슴) 황제낙엽 2005.12.11 444
96 Javascript 내장객체 String 황제낙엽 2007.04.10 392
95 JavaScript Touch and Gesture Events iPhone and Android 황제낙엽 2012.04.12 337
» unshift() Method 황제낙엽 2009.03.02 287
93 Jasmine 테스트 및 CI 구축 가이드 황제낙엽 2016.11.16 254
92 Why does this simple Javascript prototype not work in IE? 황제낙엽 2011.03.24 242
91 브라우저에서 뒤로 가기 막기와 펑션키(function key) 막기 황제낙엽 2005.10.21 236