Given an array of strings:
const first_array = ['aaa', 'bbb', 'ccc']
and another array of strings:
const second_array = ['aaa', 'bbb', 'ccc', 'ddd', 'eee']
How can I return true if all the strings from first_array
are present in the second_array
and false otherwise?