My issue
const start = 10;
const end = 20;
for (var i = 0; i < start; i++) {
console.log('resultado ’ + (i++))
}
My code
/* Write the JS Code to print all even numbers between start and end.*/
const start = 10;
const end = 20;
for (var i = 0; i < start; i++) {
console.log('resultado ' + (i++))
}
Learning course: Web development using JavaScript
Problem Link: Loops Practice Problem in Web development using JavaScript - CodeChef