SyntaxFix
Write A Post
Hire A Developer
Questions
When you say
foo = 'bar' baz(foo)
you are not passing foo to the baz function. foo is just a name used to represent a value, in this case 'bar', and that value is passed to the baz function.
foo
baz
'bar'