13: While Loop
while (condition) {
// code block to be executed
}let i = 0;
while (i < 10) {
console.log(i); // you can test by hardhat console log
i++;
}Last updated
while (condition) {
// code block to be executed
}let i = 0;
while (i < 10) {
console.log(i); // you can test by hardhat console log
i++;
}Last updated