Tag: Coached

I Coached Scrum for Non-technical Teams for 6 Months — Here Are 5 Things I Learned.

The better part of my career has been spent working on software products. Most recently, however, I had the opportunity to spend a few months with business teams in the healthcare industry, coaching Scrum and other Agile ways of developing healthcare products. I took some time to reflect on what I l...

30 Best Practices for Clean JavaScript Code [Bonus tips at the end

No waste of time. Let's go directly into it. 1. Avoid Global Variables Bad Example: var x = 10; function calculate() { // Using the global variable x return x * 2; }j Good Example: function calculate(x) { // Pass x as a parameter return x * 2; } const x...