Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Created March 27, 2019 23:23
Show Gist options
  • Save ilearnjavascript/54c664df941ea7368ddac807de5b6925 to your computer and use it in GitHub Desktop.
Save ilearnjavascript/54c664df941ea7368ddac807de5b6925 to your computer and use it in GitHub Desktop.
es6 - new methods - 13.js
Array.from("string");
// outputs: ["s", "t", "r", "i", "n", "g"]
Array.from(document.querySelectorAll('img')).filter(function (image) {
return image.src.endsWith('.png')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment