Javascript基礎

背景
投稿者投稿者wankoいいね21お気に入り登録1
プレイ回数3071難易度(3.6) 358打 長文 英字
Javascriptの基礎的なコード集
プログラミング初心者が作った基礎の基礎コード集

関連タイピング

問題文

ふりがな非表示 ふりがな表示
(console.log(’hello world’)) 儀式です (let value = ’something’) letは変数だよ (const value = ’something’) constは定数だよ (const string = ’moji’) 文字列型 (const int = 1) 整数型 (const float = 1.5) 浮動小数点型 (const boolean = true) 真か偽か (const boolean = false) 真か偽か (const object = {}) オブジェクト型てやつ (const array = [a, b, c]) 配列型
(const dict = {key: ’value’}) 辞書型 (const undefined = undefined) nullと似てるけど別物 (const null = null) undefinedと似てるけど別物 (for (let i = 0; i < 10; i++)) 繰り返す (while (i < 5)) 繰り返す (function func (arg) {}) 古い関数の作り方 (func = (arg) => {}) 新しい関数の作り方