js_cc_01_assignment
var num = 10; document.write('<p>num : ' + num + '</p>'); // 値を加算して変数に代入 num += 5; //num = num + 5 document.write('<p>num += 5 : ' + num + '</P>');
A Pen by m-shinkawa on CodePen.
License.