React Native EU Conf 20 - leotm/react-native-template-new-architecture GitHub Wiki

React Native EU 2020 - Virtual Edition


Getting the vid names

for (const item of document.getElementsByTagName('h4')) { console.log(item.children[1].innerHTML) }

Getting the links

for (const item of document.querySelectorAll('[id=playlist-items]')) { console.log(item.children[0].href) }
// or firstElementChild

Putting 'em all together (old skool Vanilla JS awakening 🤯)

for (const item of document.querySelectorAll('[id=playlist-items]')) { console.log(`[${item.firstElementChild.href}](${item.firstElementChild.firstElementChild.children[2].children[1].children[1].innerHTML})`) }