Home > Enterprise >  Syntax Error of function variable in Javascript
Syntax Error of function variable in Javascript

Time:10-15

I am using node version 12.22.6.

I don't understand, how this code is wrong.
I'm probably missing some important basic thing, but just cannot figure it out.

const change_vars = (var) => {
    console.log(var   " is a "   typeof(var)   "\n");
}

const variables = [
    42,
    "42",
    {number: 42},
    {},
    true,
    undefined
]

variables.forEach(var => change_vars(var));

node vars.js

$ SyntaxError: Unexpected token 'var'

CodePudding user response:

var is a reserved keyword in javascript. Use another variable name.

CodePudding user response:

You can't use a reserved word to name your variables, you can find the full list here:

But some examples include:

break
case
catch
class
const
continue
debugger
default
delete
do
else
export
extends
finally
for
function
if
import
in
instanceof
new
return
super
switch
this
throw
try
typeof
var
void
while
with
yield

Long story short makes sure your variables are not named the same as the reserved words.

CodePudding user response:

You can't name your variable var as that is a reserved word in javascript.

(Unrelated: I recommend using camel-case for variables; changeVars instead of change_vars)

CodePudding user response:

var is a reserved keyword in JavaScript, you will have to rename your variable to something else: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#keywords

  • Related