通过三个点克隆数组实例

时间:2016-12-02 08:33:02

标签: javascript clone

我希望是真的,为什么我会错?

   var words = ['Hi', 'Hello', 'Good day'];  
    var otherWords = [...words];  
    console.log(otherWords);           // => ['Hi', 'Hello', 'Good day']  
    console.log(otherWords === words); // => false  

0 个答案:

没有答案