I have the following function, but I can\'t seem to get the myVar variable into the inline function. What am I doing wrong here? What I would like to have happen is when I cli
Try declaring myVar with the var keyword:
myVar
var
var myVar = "hello computer";