0
1

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 5 years have passed since last update.

Java Script promptメソッド

Posted at

prompt
ユーザーに入力を促すメソッド。JavaScriptだと入力用のダイアログボックスを表示する。console.logと違う点は、promptメソッドはユーザーがキーボードから何かを入力したら、その結果の文字列を返してくれるという点。
注意する点はpromptメソッドの戻り値は内容が数字であっても常に文字列で返ってくる点である。
なので整数化するためにはconsole.log(parseInt(変数)+数値);としなければならない。

0
1
1

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?