TT testing book

node v12.22.12
version: 5.0.0
endpointsharetweet
const R = require("ramda") ""
R.map(num => num * 10, [2, 4, 6])
R.map(R.multiply(10), [2, 4, 6])
const multi = R.map(R.multiply(10))
multi([2, 4, 6])
// exercise: give me [100, 50, 10] by using multi
Loading…

no comments

    sign in to comment