JavaScript『文字列』
「とほほのWWW入門」http://www.tohoho-web.com/www.htm
「MDN」https://developer.mozilla.org/ja/docs/Web/JavaScript
順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | ku | 4065 | スペシャリスト! | 4.1 | 98.3% | 186.2 | 770 | 13 | 32 | 2024/10/24 |
関連タイピング
-
プレイ回数414英語長文220打
-
プレイ回数4164英語長文300秒
-
プレイ回数5923英語長文120秒
-
プレイ回数61541247打
-
プレイ回数349長文120秒
-
プレイ回数2131短文9打
-
プレイ回数163英語短文30秒
-
プレイ回数1966英語長文120秒
問題文
('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));