tessel / t1-runtime

[UNMAINTAINED] Tessel 1 JavaScript runtime.
Other
117 stars 33 forks source link

Array.prototype.splice when delete exceeds length. #611

Closed tcr closed 10 years ago

tcr commented 10 years ago
var a = [ 86, 67, 48, 55, 48, 51, 32, 49, 46, 48, 48 ]
var J = 11
var b = a.splice(5, J >>> 0).slice();
console.log('should equal', b.length, 6);