JSFiddle - React, Tailwind, and code Playground

by sazakharov

JavaScript

const createList = arr => arr.reduceRight((acc, n) => ({ value: n, rest: acc }), null);

const list = createList([ "first", 2, 3, 4 ]);

console.log(JSON.stringify(list));