Javascript - array(Quiz)
드림 코딩 유튜브 채널의 문제를 혼자 풀어보고 영상의 해설과 비교해보았습니다. ◆ 나의 풀이 // Q1. make a string out of an array { const fruits = ['apple', 'banana', 'orange']; const fruit = fruits.join(', '); console.log(fruit); } // Q2. make an array out of a string { const fruits = '🍎, 🥝, 🍌, 🍒'; const answer = fruits.split(','); console.log(answer); } // Q3. make this array look like this: [5, 4, 3, 2, 1] { const array = [1, 2, 3, ..
2021. 6. 22.