일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 이클립스
- break문
- Step2
- JDK
- 이벤트
- 유튜브 올리버쌤
- spread operator
- 올리버쌤
- hanq
- math
- egov
- Event
- 삼항연산자
- 취업반
- javascript
- position
- web
- 유뷰브 올리버쌤
- 이벤트핸들러
- 전자정부프레임워크
- 한큐에자바
- java
- 자바스크립트
- es6
- array
- 자바
- Youtube 올리버쌤
- for문
- 한큐
- continue문
- Today
- Total
목록배열 (2)
호다닥
Array 배열의 길이 length 속성은 배열의 길이를 담고 있다. var brands = ['Apple', 'Coca-Cola', 'Starbucks']; console.log(brands.length); 3 배열에서 특정 값 찾기 문자열에서 썻던 indexOf가 배열에서도 똑같이 동작한다. array.indexOf(item) 을 하면 array 배열에 item이 포함되어 있는지 확인 할 수 있다. 만약 포함되어 있다면 item이 있는 인덱스가 리턴된다. 포함되어 있지 않다면 -1이 리턴된다. 여러번 포함되어 있으면 처음 발견된 인덱스가 리턴된다. var brands = ['Apple', 'Coca-Cola', 'Starbucks']; console.log(brands.indexOf('Starbuck..
Array.slice() The slice() method returns a shallow copy of a portion of an array into a new array object selected from begin to end (end not included). The original array will not be modified. Array.slice(a) : a번째 array object부터 출력한다.Array.slice(a, b) : a번째부터 b번째 앞까지의 array object를 출력한다. JavaScript Demo: 1var animals = ['ant', 'bison', 'camel', 'duck', 'elephant'];23console.log(animals.slice(2)..