Skip to content

Instantly share code, notes, and snippets.

View Nabeelhassan's full-sized avatar
🏠
Working from home

Nabeel Nabeelhassan

🏠
Working from home
View GitHub Profile
@Nabeelhassan
Nabeelhassan / asia-political_geography
Last active March 23, 2020 19:44
wikiepdia: asia table data extractor
// This gist extracts the 'Political geography' Table From https://en.wikipedia.org/wiki/Asia
// Political geography table index
table = document.querySelectorAll('.wikitable')[2];
header = Array.from(table.rows[0].cells).map(i => i.innerText);
Flag = 0;
Symbol = 1;
data = [];
for (var i = 1, row; row = table.rows[i]; i++) {