Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

This Refers To The Window Object Here

  function yo()
	 {alert("yooy")}
	 
	 function y()
	 {
		  this.yo();
	 }
	 
	 function test()
	 {
	 	
		 y();
         /*will execute window.yo()*/
		 }
         
         
 
PREVIOUS NEXT
Tagged: #This #Refers #To #The #Window #Object #Here
ADD COMMENT
Topic
Name
6+1 =