i++ & ++i 2019-05-24 本文已影响0人 STONEsh var i = 10; console.log(i++); // 10 var q = 10; console.log(++q); // 11