Style Guide: Function parameters
// Style Guide: Function parameters // Never name the arguments parameter else it will // take the precedence over your arguments: // bad function nope(name, options, arguments) { // ...stuff... } // good function yup(name, options, args) { // ...stuff... }