-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsortedArray.js
26 lines (20 loc) · 1 KB
/
sortedArray.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Given is an array of users: users = ["Maria", "Ada", "Ivan"];
// Task: write the code which will create a NEW ARRAY (i.e. do not change the users array), with alphabetically sorted (in ascending order) elements of users array.
users = ["Maria", "Ada", "Ivan"];
/* -------------------------- YOUR CODE STARTS HERE ------------------------- */
let usersCopy = [];
Object.assign(usersCopy, users);
// console.log(usersCopy);
let usersSortedAlphabetically = usersCopy.sort();
/* --------------------------- YOUR CODE ENDS HERE -------------------------- */
// TEST CASE (do not modify):
console.log(`users:\n\t${users}\n`);
console.log(`usersSortedAlphabetically:\n\t${usersSortedAlphabetically}`);
/* -------------------------------------------------------------------------- */
/* EXPECTED OUTPUT: */
/* -------------------------------------------------------------------------- */
// users:
// Maria,Ada,Ivan
//
// usersSortedAlphabetically:
// Ada,Ivan,Maria