i = 10;
while (i !== 41) {
console.log(i);
i++;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
i = 10;
while (i !== 41) {
console.log(i);
i++;
}