Newer
Older
2021-Rino / fruits.html
@ItoRino ItoRino on 17 Sep 2021 319 bytes plus
<!DOCTYPE html>
<html lang="ja">
<head><title>Fruits!</title>
</head>

<body>
<script type="text/javascript" charset="utf-8">
fetch("fruits.json").then(_____
  _____________
).then((text) => {
  var fruits = _______________;
  document.write("りんごは"+fruits.りんご+"円です。");
})
</script>
</body>
</html>