Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
aコードの 3 行目を実行した後、結果が 5になる理由を知りたいですか?
a
a = 10; b = 5; a =+ b;
ぎこちない書式設定:
a =+ b;
次と同等です。
a = +b;
そして、ここのように、数値+bにキャストするための単なる派手な方法bです:
+b
b
var str = "123"; var num = +str;
あなたはおそらく望んでいた:
a += b;
以下と同等:
a = a + b;