<script>
"use strict";
fetch('https://api.github.com/repos/javascript-tutorial/en.javascript.info/commits')
.then(response => response.json())
.then(commits => alert(commits[0].author.login));
</script>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.