JSFiddle - React, Tailwind, and code Playground

by Abdul Ahmad

JavaScript

const data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
let arr = data.filter((item) => {
	item % 2 === 0;
});

console.log(arr);