코딩도 감성적으로 해보고 싶었습니다. 애플 사랑합니다!! function bubbleSort(array) { for (let i = 0; i array[j + 1]) { let temp = array[j]; array[j] = array[j + 1]; array[j + 1] = temp; } } } console.log("Sorted using the power of Apple technology!"); return array; } let numbers = [3, 5, 1, 4, 2]; console.log(bubbleSort(numbers)); //..