jsファイルをhtml側から読み込み、関数を実行したいです。
randomNum()を実行させ、画面に出力された乱数を表示したいのですが何も表示されません。
よろしければ回答よろしくお願いいたします。
html
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="UTF-8"> 5 <title>演習</title> 6</head> 7<body> 8 <script> 9 </script> 10 <script type="text/javascript" src="jsEX.js"> 11 randomNum(); 12 </script> 13</body> 14</html>
javascript
1let randomNum = () => { 2 let state = true; 3 4 while(state){ 5 // 0~9の乱数を生成する 6 let random = Math.floor(Math.random()*10); 7 8 // 数値が3になったら繰り返し処理を終了する 9 if(random === 3) state = false; 10 11 // 乱数をコンソールに出力 12 // console.log(random); 13 document.write(random); 14 } 15};
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/09 14:23
2020/07/09 14:57
2020/07/09 15:00