JSFiddle - React, Tailwind, and code Playground

JavaScript

(function($) {
	$.fn.testPlugin = function() {
		$.fn.testPlugin.testVar = "Hello World";
		alert($.fn.testPlugin.testVar);
        $.fn.testPlugin.testMethod();
	};

	$.fn.testPlugin.testMethod = function() {
		alert($.fn.testPlugin.testVar);
	};
}(jQuery));

$("body").testPlugin();