for loop for values 0.1 to 0.7 in javascript

To loop through values from 0.1 to 0.7 using a for loop in JavaScript, you can follow the code snippet below:

index.tsx
for (let i = 0.1; i <= 0.7; i += 0.1) {
  console.log(i);
}
60 chars
4 lines

In this example, we start the loop with i initialized to 0.1. The loop continues as long as i is less than or equal to 0.7. On each iteration, we increment i by 0.1 using i += 0.1. The loop will output the values 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, and 0.7.

Make sure to use a smaller increment (0.1 in this case) to avoid any potential floating-point precision issues.

Keep in mind that floating-point arithmetic can sometimes introduce rounding errors, so you may encounter slight deviations in the printed values due to this.

related categories

gistlibby LogSnag