Philip

Results 1 issues of Philip

# Where The tutorial https://github.com/codebar/tutorials/blob/gh-pages/js/lesson4/tutorial.md # What The code block ``` function getGithubInfo(username) { var url = 'https://api.github.com/users/' + username; var xmlhttp = new XMLHttpRequest(); xmlhttp.open('GET', url, false); xmlhttp.send(); return...