首页
学习
活动
专区
圈层
工具
发布

IndexError

Parent:StandardError

当给定索引无效时引发。

代码语言:javascript
复制
a = [:foo, :bar]
a.fetch(0)   #=> :foo
a[4]         #=> nil
a.fetch(4)   #=> IndexError: index 4 outside of array bounds: -2...2

扫码关注腾讯云开发者

领取腾讯云代金券