Is there a difference when using variables in a Jenkins project between this:
node index.js ${arg}
and this:
node index.js $arg
Where arg is a parameter for the project.
Update: Interesting to note that it's not Jenkins-specific.
I think this question should remain as others may assume it's something to do with Jenkins.