You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/rules/func-style.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ var doSomething = function() {
44
44
};
45
45
```
46
46
47
-
In this case, `doSomething()` is undefined at the time of invocation and so causes a runtime error.
47
+
In this case, `doSomething` is `undefined` at the time of invocation and so causes a runtime error.
48
48
49
49
Due to these different behaviors, it is common to have guidelines as to which style of function should be used. There is really no correct or incorrect choice here, it is just a preference.
0 commit comments