[Library]lodash์ ๋ํ์ฌ
2023. 4. 27. 17:38ใ๐ Library
์ ์
JS utility library. ์ฝ๋๋ฅผ ๊ฐ๋จํ๊ฒ ๋์์ฃผ๋ ์ฌ๋ฌ function ์ ๊ณต.
์ฌ์ฉ๋ฐฉ๋ฒ
https://lodash.com/ ์ ์
ํ์ผ ๋ค์ด๋ก๋
html ํ์ผ head์ script src="loadash.js"></scriptCDN ๋งํฌ
script src="
https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js
"></script
์์
- _.orderBy(name of array, '๋ถ๋ฅํ๊ณ ์ถ์ ๊ธฐ์ค", asc: ์ค๋ฆ์ฐจ์, dsc: ๋ด๋ฆผ์ฐจ์)
const users = [ { name: "Alice", age: 25 }, { name: "Bob", age: 20 }, { name: "Charlie", age: 30 }];
const sortedUsers = _.orderBy(users, ["age"], ["asc"]);
console.log(sortedUsers);
// Output: [{ name: "Bob", age: 20 }, { name: "Alice", age: 25 }, { name: "Charlie", age: 30 }]
```
Reference
ํผ์๊ณต๋ถํ๋์๋ฐ์คํฌ๋ฆฝํธ
Chat GPT
'๐ Library' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Library] Zustand (0) | 2024.03.19 |
---|---|
[Library] react-hook-form (0) | 2024.03.07 |
[Library] Zod (0) | 2024.03.07 |
[Library] [shadcn/ui] (0) | 2024.03.04 |