JSFiddle - React, Tailwind, and code Playground

by ProJey

JavaScript

function privet(stroka) {
	var result = "Привет";
  	return function() {
  return result = result + stroka;
  }
}

privet()