Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

113
Visualizações
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 Respostas
Responde à pergunta

0

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

about 4 years ago · Juan Pablo Isaza Relatório

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 Relatório

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 Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda