JSFiddle - React, Tailwind, and code Playground

by velmurugansp

JavaScript

var n, i;
n = 5;
i = n;

while(i > 0){
	console.log(i);
  i = i-1;
}