Is there a method to clone an array in jQuery? March 19, 2023 by Tarik Just use Array.prototype.slice. a = [1]; b = a.slice(); JSFiddle – http://jsfiddle.net/neoswf/ebuk5/