TheRundown

フリーミアム
よって TheRundown | 更新済み hace 2 días | Sports
人気

9.7 / 10

レイテンシー

249ms

サービスレベル

100%

Health Check

100%

すべてのディスカッションに戻る

Why would you use an integer as a key?

Rapid account: Sandtr 0 Ut
sandtr0ut
hace 5 años

or asked another way, why make “lines” and object and not an array?
data.events[i].lines.2.spread… seems not to work (i.e. dot-notation WILL not work with this setup). Anyone have any thoughts on how to access this data in my node-code using dot-notation or otherwise?

Rapid account: Therundown
therundown Commented hace 5 años

The lines are an object to allow efficient (O(1)) selection of specific sportsbook’s odds. When using JavaScript or NodeJS, you will need to use the following to access the data:

data.events[i].lines[1].spread

which results in a single additional character (two brackets instead of a single dot).

ディスカッションに参加しましょう-以下にコメントを追加してください:

ログイン/サインアップして新しいコメントを投稿