funtion filteredArray(arr,elem)
{
let newArr = [];
for(let i = 0; i < arr.length; i++)
{
if(arr[i].indexOf(elem) == -1) //Checks every parameter for the element and if is NOT there continues the code
{
newArr.push(arr[i]);
}
}
}
console.log(filteredArray([[3, 2, 3], [1, 6, 3], [3, 13, 26], [19, 3, 9]], 3));