Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

111
Views
Syntax Error of function variable in Javascript

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'

about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

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

about 4 years ago · Juan Pablo Isaza Report

0

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

  • https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar

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.

about 4 years ago · Juan Pablo Isaza Report

0

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)

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!