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

196
Views
Method declaration difference between foo() {}, and foo: function() {}

are there any kind of difference between these two types of declarations or is it just a short-hand thing?

const bar = {
  foo: function() { return 0 },
}
const bar = {
  foo() { return 0 },
}
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

An ES5 syntax looks like this:

const var = {
  foo: function() { return 0 }
}

ECMAScript 2015 allows developer to write a shorter syntax for method definitions on objects.

const bar = {
  foo() { return 0 }
}

Both are the same and the second syntax is a shorter and modern approach.

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!