Fungsi pemohon mandiri juga dapat digunakan untuk membuat variabel global dalam javascript

  $ = (function()
	  {
		  console.log("first");
		
		  y = "YYYYY";
		  
		    return y;	
		
	  })()
	 
/*other functions can use y as well*/
Javasper