JSFiddle - React, Tailwind, and code Playground

by Dedi Wibisono

JavaScript

var x = 0;
var i,z;

for(i=2; i<10; i++){
	var y = x + 2;
  z = y + 3
  i++
  
  console.log(x)
}