2

(1) と 1 の違いは何ですか。

1.toString() //Will throw error
1.toFixed(1) //Will throw error
(1).toString() // output "1"
(1).toFixed(1) // output 1.0
4

1 に答える 1