1
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?

コンソール上に謎の値がでてきた

image.png

コード

const value = {title:"タイトル", time:"1"}

console.log(parseInt(value));

原因

オブジェクトに対して数値変換していた

NaNとは非数 (Not-A-Number) を表す値
数値が解釈できないときに表示される

解決

オブジェクト内の項目を指定する
image.png

const value = {title:"タイトル", time:"1"}

console.log(parseInt(value.time));

参考

1
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
1
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?