Why is the console displaying arrayNew? I'm hoping a condition where if the array includes the elements 'a' and 'b' only then the console displays arrayNew.Can someone help me there?
var arrayNew = ['a'];
if(arrayNew.includes('b' && 'a'))
console.log(arrayNew);