Don't panic. You're among friends.
Really cool. A fun exercise for someone learning about this to try could be implementing a function to compose a variable number of function arguments.
Like:
compose(square, cube, squareRoot)(2) => 8
compose(add, toString)(1, 2) => 'three'
This was really fun to do.
Hint: Reducers over loops.
What's the best programming language a beginner should start with?
TL;DR — Python is often considered one of the most beginner-friendly languages https://www.youtube.com/watch?v=NtfbWkxJTHw&ab_channel=Fireship
Great read! Thanks for expanding my knowledge of currying.
Thank you so much for reading!
Really cool. A fun exercise for someone learning about this to try could be implementing a function to compose a variable number of function arguments.
Like:
compose(square, cube, squareRoot)(2) => 8
compose(add, toString)(1, 2) => 'three'
This was really fun to do.
Hint: Reducers over loops.
What's the best programming language a beginner should start with?
TL;DR — Python is often considered one of the most beginner-friendly languages https://www.youtube.com/watch?v=NtfbWkxJTHw&ab_channel=Fireship
Great read! Thanks for expanding my knowledge of currying.
Thank you so much for reading!