I am using "Ramda/Fantasy" library for creating Monads. And i am trying to combine IO's to get element from the DOM and change its text content. But the problem is that function that changes content of the element needs to take two arguments element, and text that we want to set. I don't know how I can that efficiently I found one solution that looks like this:
const getElement = id => IO(() => document.querySelector(id));
const setElementText = element => text => IO(() => element.textcontent = text);
getElement('h1').map(setElementText).runIO()('New Title').runIO();
Is there a better way?
                        
Two small changes to help with your example:
setElementTextallows you to partially apply the text value.chainrather thanmapremove the need for the secondrunIOcall.