JSFiddle - React, Tailwind, and code Playground

by eget teteete

JavaScript

function a() {
	function bar (a){
  	var i = 3;
    console.log(i)
    console.log(a + i);
  }
  for (var i = 0; i<10; i++ ){
  	bar(i * 2);
  }
}
a();