Given an array and an integer, return boolean if the array contains the integer.
// input: const a = [1, 2, 3, 4, 5], n = 3 // output: true
/* output */