Study/Today I Learn
2019. 3. 30.
[TIL] 2019.03.30
Object.entries > Object.entries({'a': 10, 'b': 20, 'c': 30}) { let i = -1 let res = [] while(++i < l) { res.push(i) } return res } log(range(10)) // [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] take 인자로 limit과 이터러블을 받아 해당 이터러블을 limit 만큼 잘라서 반환 const tak..