Skip to content

Instantly share code, notes, and snippets.

@redpop
Last active February 19, 2021 12:12
Show Gist options
  • Save redpop/cd913cdd844897925e88017b95c26c32 to your computer and use it in GitHub Desktop.
Save redpop/cd913cdd844897925e88017b95c26c32 to your computer and use it in GitHub Desktop.
let variables = Object.keys(window);
let sortedVariables = variables.sort((a, b) => {
if (a < b) return -1;
else if (a > b) return 1;
return 0;
});
console.log(sortedVariables);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment