Hacker News new | ask | show | jobs
by cute_boi 24 days ago
In their github, they have json mapping. And I used some simple javascript.

``` console.log( Object.values(jsonObj) .map(v => `${v.title} - ${v.sourceUrl}`) .join('\n\n') ); ```