This is my code :
var a=[1,2,3] b=$.clone(a) alert(b)
Doesn't jQuery have a 'clone' method? How can I clone an array using jQuery?
Just use Array.prototype.slice.
Array.prototype.slice
a = [1]; b = a.slice();
JSFiddle - http://jsfiddle.net/neoswf/ebuk5/
1.4m articles
1.4m replys
5 comments
57.0k users