Skip to content

Instantly share code, notes, and snippets.

@deleteman
Created June 22, 2018 05:34
Show Gist options
  • Save deleteman/9081c04c62294aed40e9b3abd9e8934d to your computer and use it in GitHub Desktop.
Save deleteman/9081c04c62294aed40e9b3abd9e8934d to your computer and use it in GitHub Desktop.
module.exports = {
firstValue: null,
sort: function(list) {
let sorted = list.sort();
this.firstValue = sorted[0]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment