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