JSFiddle - React, Tailwind, and code Playground

by Pritesh Patel

JavaScript

function printStar(n){
	for(var i=0; i=n/2; i++){
  	console.log("*")
  }
}
printStar(5);