Newer
Older
2021-yuuji / fruits.html
@HIROSE Yuuji HIROSE Yuuji on 17 Sep 2021 348 bytes JSON learning materials fruits.* added
<!DOCTYPE html>
<html lang="ja">
<head><title>Fruits!</title>
</head>

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