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
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/1781204-array-splice-to-remove-element?utm_campaign=plugin&utm_content=tracker%2F33145&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F33145&utm_medium=issues&utm_source=github).
The text was updated successfully, but these errors were encountered:
NB if the answer is, "Don't use this syntax, use splice as it's intended", that's totes cool, but a mention of that in the know breaking changes would be 👍
In CoffeeScript Redux, this does not compile:
http://michaelficarra.github.io/CoffeeScriptRedux/#try:arr%20%3D%20%5B'a'%2C%20'b'%2C%20'c'%5D%0Aidx%20%3D%201%0Aarr%5Bidx..idx%5D%20%3D%20%5B%5D%0A
In CoffeeScript, it compiles to
Which has the effect of in-place removing the
idx
element from the array.http://coffeescript.org/#try:arr%20%3D%20%5B'a'%2C%20'b'%2C%20'c'%5D%0Aidx%20%3D%201%0Aarr%5Bidx..idx%5D%20%3D%20%5B%5D%0A%0Aalert(arr)
--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/1781204-array-splice-to-remove-element?utm_campaign=plugin&utm_content=tracker%2F33145&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F33145&utm_medium=issues&utm_source=github).The text was updated successfully, but these errors were encountered: