[ javascript ] 연습 문제 도전...
											"use strict"; // Q1. make a string out of an array { const fruits = ["apple", "banana", "orange"]; let str = ''; for ( let fruit of fruits ) str += ' ' + fruit; console.log(str); // 이렇게구낭. console.log(fruits.toString()); } // Q2. make an array out of a string { const fruits = "🍎, 🥝, 🍌, 🍒"; } // Q3. make this array look like this: [5, 4, 3, 2, 1] { const array = [1, 2, 3, 4, 5]; c..