JSFiddle - React, Tailwind, and code Playground

by Farzad YZ

JavaScript

Array.prototype.concat = (...arrays) => {
	return arrays.reduce((total, current) => {
  	return total
  }, [])
}