i++和++i的运算符

var i=100;
i++;
j=i++;
y=++j;
console.log(j);
console.log(y);

是打印的最后一行的j,结果都是102

原文地址:https://www.cnblogs.com/ccc0114/p/9753452.html