DeveloperBreeze

Snippets Programming Tutorials, Guides & Best Practices

Explore 196+ expertly crafted snippets tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Sorting an Array in JavaScript

Code January 26, 2024
javascript

// Original array and sorting
let arr = [5, 2, 8, 1, 4];
console.log('Original Array:', arr);

// Sorting the array using the sort method
arr.sort();
console.log('Sorted Array:', arr);