调用java脚本方法时如何通过引用传递原始变量(如字符串)?这相当于 C# 中的 out 或 ref 关键字。
我有一个变量,例如var str = "this is a string";
并将 str 传递给我的函数,并且当我更改参数值时,它必须自动反映 str 的变化
function myFunction(arg){
// automatically have to reflect the change in str when i change the arg value
arg = "This is new string";
// Expected value of str is "This is new string"
}