You probably recognize this way of iterating in JavaScript

for (let i = 0; i < myArray.length; i++) {
// do something with myArray[i]
}

in ES6, there's a much cleaner way with for..of loops

for (item of myArray) {
    // do something with item

I think that looks a lot better! I changed several of my for loops to for...of loops in this commit.

Comments

Back to Home
John Solly Profile Picture
John Solly Profile Picture

John Solly

A hands-on AI practitioner who transitioned to a CTO role to broaden my impact.

Most of my career has been dedicated to developing spatial systems at Esri, startups, and federal agencies. Currently, I lead technology strategy for Leidos' Health IT division, supporting agencies such as SSA, VA, and HHS.

My primary focus is the convergence of spatial computing and AI, enabling machines to interpret the physical world and applying these capabilities to meaningful missions.

Please reach out if you are interested in spatial systems or advancing AI within the federal government.