JSFiddle - React, Tailwind, and code Playground

by hasandag

Babel + JSX

const MyFilter =(...args) =>{
  return args.filter(el => el ===1);
}

console.log(MyFilter(1,2,3));