前提・実現したいこと
Javascriptの勉強で単純なクイズの問題を作ろうとし、問題文をconsole.logで反映させようとしましたが問題文の部分でエラーがおきましたどうしたらいいでしょうか。
発生している問題・エラーメッセージ
エラーメッセージ ```![イメージ説明](74fc7a655be0dc04bbe0a3e3a5f81b95.png) ### 該当のソースコード ```Javascript const question ='ゲーム史上、最も売れたゲーム機は次のうちどれ?'; const answers = [ 'スーパーファミコン', 'プレイステーション', 'ニンテンドースイッチ', 'ニンテンドーDS' ]; const correct = 'ニンテンドーDS'; document.getElementsByTagName('div');
HTML
1<!doctype html> 2<html class="no-js" lang=""> 3 4<head> 5 <meta charset="utf-8"> 6 <title></title> 7 <meta name="description" content=""> 8 <meta name="viewport" content="width=device-width, initial-scale=1"> 9 10 <meta property="og:title" content=""> 11 <meta property="og:type" content=""> 12 <meta property="og:url" content=""> 13 <meta property="og:image" content=""> 14 15 <link rel="manifest" href="site.webmanifest"> 16 <link rel="apple-touch-icon" href="icon.png"> 17 <!-- Place favicon.ico in the root directory --> 18 19 <link rel="stylesheet" href="css/normalize.css"> 20 <link rel="stylesheet" href="css/main.css"> 21 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" 22 crossorigin="anonymous"> 23<meta name="theme-color" content="#fafafa"> 24</head> 25 26<body> 27 <div class="container"> 28 <!-- Content here --> 29 <!-- Add your site or application content here --> 30 <p> </p> 31<div id="js-question" class="mt-3 alert alert-primary" role="alert"> 32 A simple primary alert—check it out! 33 </div> 34<div class="d-flex justify-content-center"> 35<button type="button" class="btn btn-primary">Primary</button> 36<button type="button" class="ms-1 btn btn-primary">Primary</button> 37<button type="button" class="ms-1 btn btn-primary">Primary</button> 38<button type="button" class="ms-1 btn btn-primary">Primary</button> 39</div> 40</div> 41<script src = "app.js"></script> 42 43</body> 44 45</html>
コード
![イメージ説明](f71b694d500f52916b1c85f2bdb365c1.png) ### 試したこと ここに問題に対して試したことを記載してください。 ### 補足情報(FW/ツールのバージョンなど) ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/28 02:36