Let’s say you have an array. That’s great data, but you need it to be a string to work with it the way you need to. Luckily for us, there is the .find() method! Per the docs: “The toString() method returns a string representing the specified array and its elements.” For example, we have an array that looks like the following: “ const array1 = [1, 2, 'a', '1a']; console.log(array1.toString());
// expected output: "1,2,a,1a"