JavaScript『class{}』
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 | のゑる | 3060 | すごいね! | 3.1 | 97.5% | 358.1 | 1124 | 28 | 26 | 2026/03/23 |
| 2 | oga | 2954 | すごいね! | 3.0 | 96.8% | 367.9 | 1124 | 37 | 26 | 2026/03/05 |
| 3 | よっぴ | 2916 | すごいね! | 2.9 | 97.4% | 375.5 | 1124 | 29 | 26 | 2026/02/22 |
| 4 | mh | 2901 | すごいね! | 2.9 | 98.1% | 380.2 | 1124 | 21 | 26 | 2026/03/20 |
関連タイピング
-
Pyhonのプログラミングで使いそうな単語・記号を集めました
プレイ回数884 英語短文30秒 -
プレイ回数867 長文記号201打
-
アルファベット以外のキーを覚えよう
プレイ回数4088 英語短文82打 -
css 3 暗記用です
プレイ回数815 英語長文639打 -
1+1=2
プレイ回数27 109打 -
プログラミングタイピング
プレイ回数1326 英字60秒 -
プレイ回数1356 英語短文120秒
-
公開されている実践的な javascript プログラムです
プレイ回数1052 英語長文2780打
問題文
ふりがな非表示
ふりがな表示
(class Signal{})
class Signal{}
(class Signal{constructor(Color){this.color=Color;}
info(){console.log(this.color);}})
class Signal{constructor(Color){this.color=Color;}
info(){console.log(this.color);}}
(const stop=new Signal('red');)
const stop=new Signal('red');
(stop.color;)
stop.color;
(stop.info();)
stop.info();
(class Line
{static send(){console.log('Hello!');}})
class Line
{static send(){console.log('Hello!');}}
(Line.send();)
Line.send();
(class Akb
{constructor(member){this.name=member;}})
class Akb
{constructor(member){this.name=member;}}
(class Hkt extends Akb{})
class Hkt extends Akb{}
(const rino=new Hkt('Rino');
console.log(rino.name);)
const rino=new Hkt('Rino');
console.log(rino.name);
(class Square{constructor(value){this.length=value;}
area(){return this.length**2;}})
class Square{constructor(value){this.length=value;}
area(){return this.length**2;}}
(class Cube extends Square
{volume(){return this.length**3;}})
class Cube extends Square
{volume(){return this.length**3;}}
(const box=new Cube(10);
console.log(box.area(),box.volume());)
const box=new Cube(10);
console.log(box.area(),box.volume());
(class Signal
{constructor(Color){this.color=Color;}})
class Signal
{constructor(Color){this.color=Color;}}
(class Singo extends Signal
{constructor(mean){super('blue');this.mean=mean;})
class Singo extends Signal
{constructor(mean){super('blue');this.mean=mean;}
(info()
{console.log(`${this.color} is ${this.mean}`);}})
info()
{console.log(`${this.color} is ${this.mean}`);}}
(const blue=new Singo('Go');
blue.info();)
const blue=new Singo('Go');
blue.info();
(class Blog
{info(){alert('updated');}})
class Blog
{info(){alert('updated');}}
(class Fb extends Blog
{info2(){super.info();}})
class Fb extends Blog
{info2(){super.info();}}
(const fb=new Fb();
fb.info2();)
const fb=new Fb();
fb.info2();
など
(class Akb
{constructor(member){this.name=member;})
class Akb
{constructor(member){this.name=member;}
(info(){alert(`${this.name} was Akb`);}})
info(){alert(`${this.name} was Akb`);}}
(class Hkt extends Akb{})
class Hkt extends Akb{}
(const rino=new Hkt('Rino');
rino.info();)
const rino=new Hkt('Rino');
rino.info();
(const Akb=
class{constructor(winner){this.center=winner;}})
const Akb=
class{constructor(winner){this.center=winner;}}
(const atuko=new Akb('Atuko');
console.log(atuko.center);)
const atuko=new Akb('Atuko');
console.log(atuko.center);