Say I have a simple function with a default paramter, like this:
var someParam = 'hello world'
var someFunction = (wording = someParam) => console.log(wording)
Is it possible to access the function’s default paramters with only a reference to someFunction
?