JavaScript『条件分岐・繰返し』(構文)
JavaScriptの暗記用です
★情報元のサイト様★
「とほほのWWW入門」http://www.tohoho-web.com/www.htm
「MDN」https://developer.mozilla.org/ja/docs/Web/JavaScript
「とほほのWWW入門」http://www.tohoho-web.com/www.htm
「MDN」https://developer.mozilla.org/ja/docs/Web/JavaScript
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | mh | 2830 | すごいね! | 2.8 | 99.0% | 176.3 | 504 | 5 | 9 | 2026/03/16 |
関連タイピング
-
Snow Manが好きすぎる人向けです。
プレイ回数367 60秒 -
python 基本
プレイ回数893 英字120打 -
JAVAの練習用です。
プレイ回数1703 長文120秒 -
css 3 暗記用です
プレイ回数814 英語長文639打 -
C言語を用いた記号・数字のタッチタイピング練習です。
プレイ回数2546 英語長文220打 -
アルファベット以外のキーを覚えよう
プレイ回数4086 英語短文82打 -
プレイ回数1356 英語短文120秒
-
WEB系エンジニア向け
プレイ回数2336 英語長文1462打
問題文
ふりがな非表示
ふりがな表示
(if(score>90){alert('foo');}else if(score>50){
alert('bar');}else{alert('baz');})
if(score>90){alert('foo');}else if(score>50){
alert('bar');}else{alert('baz');}
((age<18)?alert('boy'):alert('man');)
(age<18)?alert('boy'):alert('man');
(switch(n%2)case(0):alert('even');break;
case(1):alert('odd');break;default:alert('?');break;})
switch(n%2)case(0):alert('even');break;
case(1):alert('odd');break;default:alert('?');break;}
(let n=0;
while(n<5){console.log(n);n++;})
let n=0;
while(n<5){console.log(n);n++;}
(let n=0;
do{console.log(n);n++;}while(n<5);)
let n=0;
do{console.log(n);n++;}while(n<5);
(for(let i=10;i>0;i--){
document.write(i);})
for(let i=10;i>0;i--){
document.write(i);}
(for(let i=1;i<10;i++)
{if(i===6){break;}console.log(i);})
for(let i=1;i<10;i++)
{if(i===6){break;}console.log(i);}
(for(let i=0;i<10;i++)
{if(i%2===1){continue;}console.log(i);})
for(let i=0;i<10;i++)
{if(i%2===1){continue;}console.log(i);}
(const obj={a:1,b:2,c:3};
for(let key in obj){console.log(key)};)
const obj={a:1,b:2,c:3};
for(let key in obj){console.log(key)};