JSFiddle - React, Tailwind, and code Playground

by habla

JavaScript

fetch('https://api.pushshift.io/reddit/submission/search?html_decode=true&q=%22Who%27s%20Hiring?%22&size=500').then(x=>x.json()).then(x => {
	var z = x.data.map(r => r.subreddit);
  z = Array.from(new Set(z));
  console.log(z);
})