数字の先頭に 0-s がある js ロジックを理解したいだけです。例えば
var x = 09.3
// here x == 9.3
// other example
09.3 == 9.3
// returns true
// but check this one
var x = 02.5
// Uncaught SyntaxError: Unexpected number
// or this one
02.5 == 2.5
// same error here
それがどのように機能するか、最初の例でなぜ機能し、先行ゼロを無視するのか、誰でも説明できますが、2 番目の例では SyntaxError が返されます
ありがとうございました