일반 unshift() Method

황제낙엽 2009.03.02 13:22 조회 수 : 657 추천: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


번호 제목 글쓴이 날짜 조회 수
226 각 브라우저 별 User Agent 정보 황제낙엽 2011.02.22 1204
225 CORS(Cross-Origin Resource Sharing) - 4 file 황제낙엽 2017.03.07 1176
224 자바스크립트의 쉬프트 연산자 (Shift Operator) 와 음수 (Negative) 이야기 황제낙엽 2012.05.31 1073
223 iframe auto resize (cross browsing) 황제낙엽 2011.05.13 1010
222 Javascript CORS/XSS 극복하는(피하는) 방법 file 황제낙엽 2017.07.31 964
221 [JavaScript Tutorials] Introducing the closure (해석중) 황제낙엽 2009.04.10 946
220 Memory leak 및 성능 측정 도구 file 황제낙엽 2011.11.23 929
219 입력받은 날짜와 현재 날짜와의 비교 함수 황제낙엽 2019.08.02 908
218 SelectBox 밑에 CheckBox가 포함된 리스트 만들기 file 황제낙엽 2007.01.16 854
217 JavaScript Reserved Words 황제낙엽 2011.11.28 833
216 Javascript 를 사용하여 Binary File 읽기 황제낙엽 2010.09.29 810
215 JavaScript Touch and Gesture Events iPhone and Android 황제낙엽 2012.04.12 782
214 url encode & decode 황제낙엽 2011.10.30 774
213 Javascript ArrayBuffer ? Binary handling in javascript 황제낙엽 2012.03.19 764
212 현재 document 의 host 와 port 를 얻는 방법 황제낙엽 2023.10.03 733
211 자바스크립트로 서버의 XML파일을 접근 (실패했슴) 황제낙엽 2005.12.11 715
210 외부 라이브러리 (.js) 의 바람직한 동적 로딩 (The best way to load external JavaScript) 황제낙엽 2009.10.05 690
209 XMLHttpRequest 의 이벤트 onreadystatechange 황제낙엽 2012.05.30 689
208 JavaScript Array.push Performance 황제낙엽 2011.11.21 685
207 String Performance: Getting Good Performance from Internet Explorer (IE7) 황제낙엽 2011.11.24 678