We're a place where coders share, stay up-to-date and grow their careers.
Beginner here, is this because whatever you put in the brackets after sayHello is what is passed, 'name' is essentially a placeholder for the value you are passing into it?
Correct. name is the parameter scoped to that function.
name
Beginner here, is this because whatever you put in the brackets after sayHello is what is passed, 'name' is essentially a placeholder for the value you are passing into it?
Correct.
name
is the parameter scoped to that function.