JavaScript『関数』
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | mh | 2496 | 頑張ったね! | 2.5 | 98.4% | 278.8 | 707 | 11 | 13 | 2025/12/25 |
| 2 | mikaroko | 1821 | 頑張ったね! | 1.8 | 98.1% | 381.0 | 707 | 13 | 13 | 2025/12/12 |
関連タイピング
-
JavaScript暗記用です
プレイ回数2849英語長文601打 -
C言語を用いた記号・数字のタッチタイピング練習です。
プレイ回数2240英語長文220打 -
python 基本
プレイ回数554英字120打 -
はじプロのノードンを打ち切れ!
プレイ回数761575打 -
プログラミング用のタイピング練習
プレイ回数5351英語長文300秒 -
全文字タイピング練習(108文字×100問,2分間ランダム)
プレイ回数4316英語長文120秒 -
全記号数字タイピング練習(108文字×100問,2分間ランダム)
プレイ回数8709英語長文120秒 -
コマンドラインやプログラミング言語のタイピング練習用
プレイ回数2321英語長文90秒
問題文
(function info(){console.log('Hi!')}; info();)
function info(){console.log('Hi!')}; info();
(const add=function(a,b){return a+b;}; add(4,5);)
const add=function(a,b){return a+b;}; add(4,5);
(const arrow=()=>{};)
const arrow=()=>{};
(const multiply=x=>x*10; multiply(10);)
const multiply=x=>x*10; multiply(10);
(function add(a,b){function square(x){return x*x;} return square(a)+square(b);};add(10,20);)
function add(a,b){function square(x){return x*x;} return square(a)+square(b);};add(10,20);
(function loop(x){if(x<=0)return;loop(x-1); console.log(x);};loop(5);)
function loop(x){if(x<=0)return;loop(x-1); console.log(x);};loop(5);
(function foo(n){if(n<=1){return 1;} return (n*foo(n-1));}console.log(foo(4));)
function foo(n){if(n<=1){return 1;} return (n*foo(n-1));}console.log(foo(4));
(const loop=x=>{if(x>=10)return; loop(x+1);console.log(x);};loop(5);)
const loop=x=>{if(x>=10)return; loop(x+1);console.log(x);};loop(5);
(const cbf=function(){alert('callback function');}; setTimeout(cbf,1000);)
const cbf=function(){alert('callback function');}; setTimeout(cbf,1000);
(const calculation=function(a=5){return a*a;}; calculation();)
const calculation=function(a=5){return a*a;}; calculation();
(function foo(x,y){return(x+y);} console.log(foo.length);)
function foo(x,y){return(x+y);} console.log(foo.length);
(function foo(...x){console.log(x);} foo(1,2,3,4);)
function foo(...x){console.log(x);} foo(1,2,3,4);
((function(n){return(n*n);}(10));)
(function(n){return(n*n);}(10));