For clarity, you should use the method that is the documented method of taking a copy of an array (or portion thereof):
var c2 = a.slice(0);
On any decent browser the performance difference will be negligible, so clarity should be the deciding factor.