자바스크립트 9. 유용한 10가지 배열 함수들. Array APIs 총정리
// Q1. make a string out of an array const fruits = ['apple', 'banana', 'orange']; const result = fruits.join(', '); console.log(result); // Q2. make an array out of a string const fruits = 'apple, banana, cherry'; const result = fruits.split(','); console.log(result); // Q3. make this array look like this: [5, 4, 3, 2, 1] const array = [1, 2, 3, 4, 5]; const result = array.resverse(); console.l..