When I do for (tab) I would like VS code to just set up a regular for loop for me to fill out but instead it prints out this monster
for (let index = 0; index < array.length; index++) {
const element = array[index];
}
Anybody know a way to change this so it just prints out the simple for(i= ;i< ; i++); ?