js中<<是什么运算符

js中<<是什么运算符

左移运算符 (&lt&lt)说明&lt&lt运算符把 expression1 的所有位向左移 expression2 指定的位数。例如:var temptemp = 14 &lt&lt2变
JavaScript230