...

/

Solution Review: Working with Flow

Solution Review: Working with Flow

Learn the solution to the coding challenge "Working with Flow."

We'll cover the following...

Solution

Press + to interact
const application = (name: string): PersonWithAgeAndCountry => {
return flow(
buildBasicPerson,
enrichWithAge,
enrichWithCountry,
)(name);
};
console.log(application("Ali"));

Explanation

...