• 追加された行はこの色です。
  • 削除された行はこの色です。
* 型 [#dcbc4674]
* 型 [#p5f2886c]

** 型一覧 [#jb361f3c]
- string
- number
- boolean
- null
- undefined
- Object
-- function
-- Array
-- Date
-- RegExp

** 数値を期待する場合(ヌルは除く) [#b8a861d0]
 var num = prompt('How old ?');
 if (!isNaN(fee) && fee != null) {
   alert(num);
 }
** typeofの戻り値 [#z50b9a8e]
- string
- number
- boolean
- function
- object
- undefined


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS