1// Style Guide: Function parameters
2// Never name the arguments parameter else it will
3// take the precedence over your arguments:
4
5
6// bad
7function nope(name, options, arguments) {
8 // ...stuff...
9}
10
11// good
12function yup(name, options, args) {
13 // ...stuff...
14}
15
16