python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
RamdaJS is it overkill trying to point-free every function
I recently got into functional programming bit by bit; started trying to point-free every function I code today.
I was practicing using Ramda while I was coding a binary search algorithm.
const R = re...
Mohammed Ibraham
Votes: 0
Answers: 0
Reduce multiple properties in array of array of objects and omit other properties using Ramda
I have this array of arrays with objects:
const data = [
[
{
index: 320,
blocks: 2,
value: '31011784785',
participants: 1222,
cost: '1286828506'
},
{
...
Dacomis
Votes: 0
Answers: 4
How to persist an object that is passed by reference in React?
I'm working on this task where I need to do the following:
I have this object passed by reference from 4 components
const initialStateSubjects = {
"1":{
"name": "math",
&...
timmyx
Votes: 0
Answers: 1
Implementation of async unfold function in Javascript
I've sometimes found myself wanting an asychronous version of unfold in Javascript: a function that would take a value, then apply an async function to it to get another value, and repeat on this valu...
phhu
Votes: 0
Answers: 2