Let's say we have the following JavaScript array
var array1 = ['Teams' , 'Chat' , 'Zoom' , 'Slack' ] 
var array2 = [ 'Zoom' , 'Chat'] 
How to make a new array in which only those elements of array1 present which are not in array2?
New Array should look like
new_array = [ 'Teams' , 'Slack' ]
 
     
     
    