Skip to content

Instantly share code, notes, and snippets.

@sharkyak
Created February 10, 2018 06:03
Show Gist options
  • Save sharkyak/cb725c34cce73505c1e0137c754cbed9 to your computer and use it in GitHub Desktop.
Save sharkyak/cb725c34cce73505c1e0137c754cbed9 to your computer and use it in GitHub Desktop.
nodelist to array
var rowsArr = Array.from(rows);
var rowsArr = Array.prototype.slice.call(rows);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment