Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
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
Tags
more
Archives
Today
Total
관리 메뉴

신나는 개발...

Lodash...? 본문

weekly

Lodash...?

벽돌1 2020. 3. 21. 09:25

https://lodash.com/

 

Lodash

_.defaults({ 'a': 1 }, { 'a': 3, 'b': 2 });_.partition([1, 2, 3, 4], n => n % 2);DownloadLodash is released under the MIT license & supports modern environments. Review the build differences & pick one that’s right for you.InstallationIn a browser: Using n

lodash.com

 

Why Lodash?

Lodash는 array, number, objects, strings 등을ㄹ 다룰 때 번거로움을 줄여 자바스크립트를 쉽게해준다. Lodash 모듈 mthod는 이 3가지에 딱 들어맞는다.

  • Iterating arrays, objects & strings (iterator의 Iterating이겠쥬?)
  • 값을 다루고 테스트 할 때
  • composite functions를 생성할 때

 

https://en.wikipedia.org/wiki/Lodash

 

Lodash - Wikipedia

Lodash is a JavaScript library which provides utility functions for common programming tasks using the functional programming paradigm. History[edit] Lodash draws most of its ideas from Underscore.js and now receives maintenance from the original contribut

en.wikipedia.org

Lodash is a JavaScript library which provides utility functions for common programming tasks using the functional programming paradigm.

Lodash는 함수형 프로그래밍 패러다임에 사용하는 common programming 테스크를 위한 유틸리티 함수를 제공하는 자바스크립트 라이브러리다.

 

 

흠 이게 fp랑 뭔 상관일까....

'weekly' 카테고리의 다른 글

A Beginner’s Guide to Currying in Functional JavaScript  (0) 2020.04.04
바벨의 Configuration과 Polyfill  (0) 2020.03.21
바벨의 Plugins & Presets  (0) 2020.03.21
바벨 cli의 기본적 사용  (0) 2020.03.21
babel 사용하기  (0) 2020.03.21