js
1コード'use strict' 2// 3let can=document.getElementById("can"); 4//letはこれから変数を定義しますよーという合図 5let con=can.getContext("2d");//キャンバスから2次元取得 6 7//ブロックのサイズ(ピクセル) 8const BLOCK_SIZE=30; 9 10//テトロミノのサイズ 11const TETRO_SIZE=4; 12 13let tetro=[ 14 [0,0,0,0], 15 [1,1,0,0], 16 [0,1,1,0], 17 [0,0,0,0], 18], 19 20for(let y=0; y<TETRO_SIZE ; y++) 21{ 22 for(let x=0; x<TETRO_SIZE ; x++) 23 { 24 if( tetro[y][x] ) 25 { 26 let px = x * BLOCK_SIZE; 27 let px = y * BLOCK_SIZE; 28 29 con.fillStyle="red";//塗りつぶしのスタイル指定 30 con.fillRect(px,py, BLOCK_SIZE ,BLOCK_SIZE);//(x座標、Y座標、横幅、縦幅) 31 } 32 33 } 34}
実行結果
googleクロームには何も出ません。
質問内容
エラー文はUncaught SyntaxError: Unexpected token 'for'です。どこが間違えか教えてください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/02 05:30
2020/03/02 05:36