Skip to content

React Native EU Conf 20

LeoTM edited this page Dec 5, 2021 · 12 revisions

React Native EU 2020 - Virtual Edition (playlist)

https://www.youtube.com/watch?v=QwoQgzBgJu8&list=PLZ3MwD-soTTEGG42-BvoqD0qK0vKV2ygm

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
Clone this wiki locally