Rhino-1.8.0幂运算符本页总览幂运算符 幂运算 logd(2 ** 3) // 输出: 8 赋值运算 let x = 2;x **= 3; // 相当于 x = x ** 3logd(x); // 输出: 8 负数 负数必须用()包起来,作为整体运算 logd((-2) ** 3)