Skip to content

Instantly share code, notes, and snippets.

View dioxmio's full-sized avatar
🏠
Working from home

Jose Granja Martinez dioxmio

🏠
Working from home
  • Lingoda
  • Barcelona
  • X @joze
View GitHub Profile
@dioxmio
dioxmio / exec.js
Last active August 29, 2021 14:25
const citiesStartingWithB = /B.*?\w+/g
const target = "Barcelona Viena Beijing Tokio Bogota";
let result;
while ((result = citiesStartingWithB.exec(target)) !== null) {
console.log(`Match: ${result[0]}`);
console.log(`Last Index at ${citiesStartingWithB.lastIndex}`);
}
// ✅ Output