we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "style guide 3a functions"
Ash
30 Aug 2019
1// bad
2const f = function(){};
3const g = function (){};
4const h = function() {};
5
6// good
7const x = function () {};
8const y = function a() {};
9
similar questions
queries leading to this page
style guide 3a functions