javascript 라이브러리 로다쉬 - 배열,객체, 문자열 관련 유용한 라이브러리
아시는분이 많을거라 생각하고 있습니다.
배열,객체, 문자열 관련 자바스크립트 유용한 라이브러리인 로다쉬를 소개를 하려고합니다.
CDN 설치
로다쉬 CDN 리스트 경로 https://www.jsdelivr.com/package/npm/lodash
해동 경로
로 이동하셔서 카피를 누르면 태그가 복사됩니다.
[code]
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js" integrity="sha256-qXBd/EfAdjOA2FGrGAG+b3YBn2tn5A6bhz+LSgYD96k=" crossorigin="anonymous"></script>
[/code]
패키지 설치
[code]
npm install --save lodash
[/code]
_.findIndex(array, [predicate=_.identity], [fromIndex=0])
=>배열에서 인덱스 리턴에 사용
[code]
var users = [ { 'user': 'barney', 'active': false }, { 'user': 'fred', 'active': false }, { 'user': 'pebbles', 'active': true } ]; _.findIndex(users, function(o) { return o.user == 'barney'; }); // => 0 // The `_.matches` iteratee shorthand. _.findIndex(users, { 'user': 'fred', 'active': false }); // => 1 // The `_.matchesProperty` iteratee shorthand. _.findIndex(users, ['active', false]); // => 0 // The `_.property` iteratee shorthand. _.findIndex(users, 'active'); // => 2
[/code]
_.uniq(array)
=>배열의 중복 값을 제거 , 각 요소의 첫 번째 항목만 유지
[code]
_.uniq([2, 1, 2]);
// => [2, 1]
[/code]
자세한 정보 : https://lodash.com/
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 5276 | 2년 전 | 1331 | |||
| 5275 | 2년 전 | 1400 | |||
| 5274 | 기타 | 2년 전 | 814 | ||
| 5273 | JavaScript |
swallow
|
2년 전 | 1044 | |
| 5272 | node.js |
swallow
|
2년 전 | 741 | |
| 5271 | JavaScript |
swallow
|
2년 전 | 1495 | |
| 5270 | PHP |
swallow
|
2년 전 | 844 | |
| 5269 | node.js |
swallow
|
2년 전 | 679 | |
| 5268 | node.js |
swallow
|
2년 전 | 1208 | |
| 5267 | PHP |
swallow
|
2년 전 | 1588 | |
| 5266 | MySQL |
swallow
|
2년 전 | 1088 | |
| 5265 | PHP |
swallow
|
2년 전 | 2028 | |
| 5264 | JavaScript |
swallow
|
2년 전 | 858 | |
| 5263 | 기타 |
swallow
|
2년 전 | 2980 | |
| 5262 | 기타 |
swallow
|
2년 전 | 667 | |
| 5261 | node.js |
swallow
|
2년 전 | 1059 | |
| 5260 | JavaScript |
swallow
|
2년 전 | 1508 | |
| 5259 | node.js |
swallow
|
2년 전 | 728 | |
| 5258 | node.js |
swallow
|
2년 전 | 1741 | |
| 5257 | node.js |
swallow
|
2년 전 | 1292 | |
| 5256 | PHP |
swallow
|
2년 전 | 1938 | |
| 5255 | node.js |
swallow
|
2년 전 | 684 | |
| 5254 | PHP |
swallow
|
2년 전 | 3010 | |
| 5253 | node.js |
swallow
|
2년 전 | 675 | |
| 5252 | 정규표현식 |
swallow
|
2년 전 | 621 | |
| 5251 | node.js |
swallow
|
2년 전 | 876 | |
| 5250 | PHP |
swallow
|
2년 전 | 1110 | |
| 5249 | node.js |
swallow
|
2년 전 | 1059 | |
| 5248 | PHP |
swallow
|
2년 전 | 1408 | |
| 5247 | node.js |
swallow
|
2년 전 | 1014 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기