该帮助的版本不再更新,请参见https://www.jmp.com/support/help/zh-cn/15.2 获取最新的版本.


The Glue() function returns the result of the last expression. This function is equivalent to using semicolons. The following expressions both return 3:
Glue( a = 2, b = 3 );
a = 2; b = 3;
The First() function also evaluates each argument sequentially but returns the result of the first expression. The following expression returns 2:
First( a = 2, b = 3);
What does First() do in the following script?
x = 1000;
First( x, x = 2000 );
The First() function returns the value of x (1000). 2000 is then assigned to x.