JavaScript 中什么是增加 (++) 运算符?
增加运算符将整数值增加一。以下是一个示例,其中 a 的值使用增加运算符增加了 2 次
示例
<html> <body> <script> var a = 33; a = ++a; document.write("++a = "); result = ++a; document.write(result); </script> </body> </html>
广告
增加运算符将整数值增加一。以下是一个示例,其中 a 的值使用增加运算符增加了 2 次
<html> <body> <script> var a = 33; a = ++a; document.write("++a = "); result = ++a; document.write(result); </script> </body> </html>