We’re excited to announce that @npmjs will be joining GitHub. Millions of JavaScript developers rely on npm, and we’re honored to support this community in a new way. Learn more at github.co/38RUgzF
Tip: JS spread arguments using an empty array is the same as omitting the argument completely. Example:
let args = [];
foo(a, ...args, b);
Evaluates the same as:
foo(a, b);
It’s generally best to only use spread arguments as the last arguments to avoid errors.
Guess what? @github has been running on Rails 6.0 in production since last Monday. We had 0 customer exceptions during testing. I'm so proud of how solid Rails 6.0 is and that our engineers sent over 100 PRs to this version. Blog post on @github's blog coming soon!