You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
4d4841
changed the title
this.splice() acts different from array.splice()
Omitting deleteCount, this.splice() acts different from array.splice()
Jan 10, 2018
Description
Should this.splice('thisArray', 0) remove all entries? "If deleteCount is omitted ... then all of the elements from start through the end of the array will be deleted." https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice
Live Demo
http://jsbin.com/wogogaseya/1/edit?html,output
Steps to Reproduce
// Lengths: 0 3
https://github.com/Polymer/polymer/blob/master/lib/mixins/property-effects.html#L1942
Expected Results
Lengths: 0 0
Actual Results
Lengths: 0 3
Browsers Affected
Versions
The text was updated successfully, but these errors were encountered: