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 | qqq | 2562 | すごいね! | 2.6 | 97.9% | 294.2 | 770 | 16 | 32 | 2025/12/26 |
| 2 | mh | 2270 | 頑張ったね! | 2.3 | 98.3% | 333.4 | 770 | 13 | 32 | 2026/01/30 |
| 3 | mikaroko | 1525 | もう一歩! | 1.6 | 95.2% | 479.7 | 770 | 38 | 32 | 2025/12/23 |
関連タイピング
-
タイピングをマスターしたい方向けの問題です。
プレイ回数8336 長文英字326打 -
JavaScript 暗記用です
プレイ回数1309 英語長文1345打 -
コマンドラインやプログラミング言語のタイピング練習用
プレイ回数2435 英語長文90秒 -
TypeScript英単語タイピング(1分間ランダム)
プレイ回数311 英語短文60秒 -
JavaScriptの暗記用です
プレイ回数2734 英語長文504打 -
※long long → ll, vector → vc
プレイ回数224 英語90秒 -
競技プログラミングに特化したc++コードのタイピングです。
プレイ回数2875 英語長文300秒 -
タッチタイピングをマスターしたい方向けの問題です。
プレイ回数9229 長文英字411打
問題文
ふりがな非表示
ふりがな表示
('myTyping';)
'myTyping';
(`${1+2}`;)
`${1+2}`;
(String.raw`tab \t new \n line`;)
String.raw`tab \t new \n line`;
(String(2021);)
String(2021);
('myTyping'.length;)
'myTyping'.length;
('012345'.charAt(4);)
'012345'.charAt(4);
('abcdef'.substring(2);)
'abcdef'.substring(2);
('0123456'.substring(2,4);)
'0123456'.substring(2,4);
('987654321'.slice(-4,-2);)
'987654321'.slice(-4,-2);
(' trim '.trim();)
' trim '.trim();
(' trim '.trimStart();)
' trim '.trimStart();
(' trim '.trimEnd();)
' trim '.trimEnd();
('1/2/3'.split('/');)
'1/2/3'.split('/');
('1/2/3'.split('/',1);)
'1/2/3'.split('/',1);
('sa'.concat('ku','ra');)
'sa'.concat('ku','ra');
('88'.repeat(2);)
'88'.repeat(2);
('rainy day'.replace('rainy','fine');)
'rainy day'.replace('rainy','fine');
('Stop!'.toUpperCase();)
'Stop!'.toUpperCase();
('Stop!'.toLowerCase();)
'Stop!'.toLowerCase();
('youtube'.indexOf('u',3);)
'youtube'.indexOf('u',3);
など
('ababab'.lastIndexOf('b');)
'ababab'.lastIndexOf('b');
('kaguyahime'.startsWith('kag');)
'kaguyahime'.startsWith('kag');
('kaguyahime'.endsWith('hime');)
'kaguyahime'.endsWith('hime');
('kaguyahime'.includes('ya');)
'kaguyahime'.includes('ya');
('MomoTaro'.match(/mo/ig);)
'MomoTaro'.match(/mo/ig);
('MomoTaro'.search(/m/);)
'MomoTaro'.search(/m/);
('usiwakamaru'.substr(3,4);)
'usiwakamaru'.substr(3,4);
('cd'.padStart(4,'#');)
'cd'.padStart(4,'#');
('cd'.padEnd(4,'#');)
'cd'.padEnd(4,'#');
(JSON.stringify({x:5,y:6});)
JSON.stringify({x:5,y:6});
(const json='{"medal":"gold","rank":1}';
console.log(JSON.parse(json));)
const json='{"medal":"gold","rank":1}';
console.log(JSON.parse(json));
(console.log(JSON.stringify(json));)
console.log(JSON.stringify(json));