Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teotimepacreau/higher-order-functions-exercices-day31-of-100daysofcode
Higher Order Functions exercices from #30DaysOfJavascript
https://github.com/teotimepacreau/higher-order-functions-exercices-day31-of-100daysofcode
100daysofcode 30daysofjavascript higherorderfunctions javascript vanilla-js vanillajavascript vanillajs
Last synced: about 4 hours ago
JSON representation
Higher Order Functions exercices from #30DaysOfJavascript
- Host: GitHub
- URL: https://github.com/teotimepacreau/higher-order-functions-exercices-day31-of-100daysofcode
- Owner: teotimepacreau
- Created: 2023-07-29T08:11:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-29T08:18:26.000Z (over 1 year ago)
- Last Synced: 2023-07-29T09:41:01.924Z (over 1 year ago)
- Topics: 100daysofcode, 30daysofjavascript, higherorderfunctions, javascript, vanilla-js, vanillajavascript, vanillajs
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Higher Order Functions exercices from #30DaysOfJavascript
https://github.com/Asabeneh/30-Days-Of-JavaScript/blob/master/09_Day_Higher_order_functions/09_day_higher_order_functions.md# Learning
- combining `typeof` and `filter` to return only numbers
- concatenate strings with `reduce`
- `some` array method
- `every` array method
- `find` and `findIndex`
- populating an object with 10 most of a big array : using a combination of storing object, `for... of` loop, `sort`, `slice`, `map`
- creating an object with bracket notation `storingObject[key] = value`# 🛠️
Vanilla Javascript