Guest User

Untitled

a guest
Jun 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. module.exports = {
  2. firstValue: null,
  3. sort: function(list) {
  4. let sorted = list.sort();
  5. this.firstValue = sorted[0]
  6. }
  7. }
Add Comment
Please, Sign In to add comment