Javaスクリプトメソッドを呼び出すときに、参照によってプリミティブ変数(文字列など)を渡す方法は?これは、C#のoutまたはrefキーワードに相当します。
私はstrのような変数を持っていて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"
}