Let say I have this code in a JS file called plus2.js:
function plus2(n){
print (n+2);
};
plus2(n);
That's how it can be exacuted via PHP shell_exec:
echo shell_exec('js -f plus2.js');
Which doesn't return anythig because I have not informed a value to "n".
And that's the question: how can I pass a value to "n" via PHP shell_exec?