An Example of a function argument function printValue(someValue) { console.log('The item I was given is: ' + someValue); } printValue('abc'); // -> The item I was given is: abc