StreetVoice
一個自己製作音樂並上傳和大家分享的音樂網站,筆者也很喜歡上去聽大家的創作呢!很多品質都很好,而且一樣能加入自己的歌單並播放。
var o = {x: 1};
function foo(){
// Overwrite var `o` with a string
arguments[0] = "string";
}
foo(o);
console.log(o); // Why is `o` still an object and not the string `string`?
var o = {x: 1};
function foo(a){
// Overwrite var `o` with a string
a = "string";
}
foo(o);
console.log(o); // Why is `o` still an object and not the string `string`?
var x = 5;
var y = '5';
if (x == y) {
console.log('same');
} else {
console.log('not same');
}
result:same