What type of variable can only be used within the context of a particular expression, and can only be accessed within the function that defines them?
What type of variable can only be used within the context of a particular expression, and can only be accessed within the function that defines them?
A local variable is a type of variable that can only be used within the context of a particular expression and can only be accessed within the function that defines it. Local variables are typically declared within a function and only exist during the execution of that function.
yep, local variables