for(let i = 0; i <= 20; i += 2){
console.log(i);
}
console.log("=========================")
for (let i = 0; i <= 50; i++) {
if (i%2 == 0) {
console.log(`${i} = Par`)
}else{
console.log(`${i} = Impar`)
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: