es6 compare two arrays

JavaScript
let difference = arrA.filter(x => !arrB.includes(x));
Source

Also in JavaScript: