What is the output of this code?
<pre><code>var cat = { name: 'Athena' };function swap(feline) {
feline.name = 'Wild'; feline = { name: 'Tabby' };}
swap(cat);console.log(cat.name);</code></pre>
中等javascriptweb-development