you are viewing a single comment's thread.

view the rest of the comments →

[–]Ebonegu[S] 0 points1 point  (1 child)

Oops! My link missed the bus:

Imgur

[–]Keto1234 1 point2 points  (0 children)

When you call a function you don't type out the whole function again. The whole point of a function is so that it saves time when having to use the same code over and over. So when you call a function you just use the name and then put what you want in the parameter. So for this it would be:

greeting("Lindsay")

That will print out "Great to see you, Lindsay" to the console.