0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Javascriptについて

Posted at

●constの注意点

const で定義した定数でできないのは socres = 10; といったような scores そのものへの再代入であって、配列の要素への代入はできる

●配列の命令
・unshift()・先頭に配列を追加
・push()・末尾に配列を追加
・shift()・先頭から要素を削除
・pop()・末尾から要素を削除
・splice(変化が開始する位置,削除数,追加する要素)

●スプレッド構文・・...を配列の中で使うことで、そこに別の配列を展開。

●アラート・・・alert() を使えば何かお知らせを出すときに便利

●確認・・・ユーザーに確認を求める confirm()

●setTimeout()を使って、指定した時間後に処理を実行する

●例外処理・・予期せぬエラーを例外というが、システム障害などでっすテムが止まってしますことがある。処理を止めたくない時の処理を例外処理という。
try...catch

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?