Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Unload js object

    //Not sure if this will work, Haven't tested it yet but it makes sense.
    function fnc1() {
		console.log("I did something")
    }
	
    window.fnc1  = null
    //or
    window["fnc1"]  = null
	//see the source below
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Unload #js #object
ADD COMMENT
Topic
Name
8+1 =